Package status shown invalid

Hi,
I am facing the below error,
ORA-04061: existing state of package body "TBM.PAYBACK" has been invalidated
ORA-06508: PL/SQL could not find program unit being called "TBM.PAYBACK"
Status of the package,
select status,object_name, owner from dba_objects where object_name='PAYBACK' and owner = 'TBM';
status object_name owner
invalid PAYBACK public
valid PAYBACK tbm
valid PAYBACK tbm
For TBM user it shows status "valid" and PUBLIC user "invalid"
So is the package valid or invalid.
Connecting as sys tried to compile the package and the package body.. it gets compiled successfully.
But the above sql query still show the same output.
Please guide.

You're welcome,
Since you got an answer and was satisfied with that, you really should close the thread.
Doing that would even improve your somewhat poor statistics
Handle:      A-K
Status Level:      Newbie
Registered:      Aug 5, 2007
Total Posts:      212
Total Questions:      104 *(97 unresolved)*

Similar Messages

  • Prestage package status not updating on the server

    I have been successful in extracting other prestage packages on DP but for 2 packages, it extract them fine as per the logs and sends the status to the MP as well but the server doesnt reflect the updated status.
    prestagecontent.log shows the following
    Management Point: 'http://<MP Name>'      
    Site Code: '<Sitecode>' PrestageContent            
    DP server: '<DP server name>'         
    NAL Path: ["Display=\\<DP server name>\"]MSWNET:["SMS_SITE=<sitecode>"]\\<DP server name>\'                PrestageContent            
    Set authenticator in transport    PrestageContent            
    Sent <packageID> package state message to site 
    End ====
    What could be the reason, i have tried to recopy the packages from the original source and tried extracting 2-3 times
    using the extraction switch "/f" as well but didnt reflect the status.
    Prestage option is already checked.

    Distmgr.log has the below entries although they were not in red
    Will reject STA for DP ["Display=\\DP server name\"]MSWNET:["SMS_SITE=SITE CODE"]\\DP server name\ as it does not exist in the PkgServers table       SMS_DISTRIBUTION_MANAGER             
    7/4/2014 10:07:50 AM    6180 (0x1824)
    Will not process this invalid package status file from remote DP ["Display=\\DP server name\"]MSWNET:["SMS_SITE=SITE CODE"]\\DP server name\, delete C:\Program Files\Microsoft Configuration Manager\inboxes\distmgr.box\INCOMING\EAKYPGEC.STA       
    SMS_DISTRIBUTION_MANAGER              7/4/2014 10:07:50 AM         6180 (0x1824)
    STATMSG: ID=2354 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=Primary server name SITE=SITE CODE PID=7420 TID=6180 GMTDATE=Fri Jul 04 04:37:50.055 2014 ISTR0="C:\Program Files\Microsoft Configuration Manager\inboxes\distmgr.box\INCOMING\EAKYPGEC.STA"
    ISTR1="["Display=\\DP server name\"]MSWNET:["SMS_SITE=SITE CODE"]\\DP server name\" ISTR2="SITE CODE001C5" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE CODE001C5" AID1=404 AVAL1="["Display=\\DP server name\"]MSWNET:["SMS_SITE=SITE
    CODE"]\\DP server name\" SMS_DISTRIBUTION_MANAGER              7/4/2014 10:07:50 AM       6180 (0x1824)
    Successfully delete package status file C:\Program Files\Microsoft Configuration Manager\inboxes\distmgr.box\INCOMING\EAKYPGEC.STA        SMS_DISTRIBUTION_MANAGER             
    7/4/2014 10:07:50 AM         6180 (0x1824)
    There are no entries in pkgxfermgr.log

  • Package procedure in invalid state

    Hi all,
    We are having an application in C# and backend oracle 10g placed in Location1.
    There is modification in Packaged procedure. So we remotely (from Location2) connected to Location1 and that Packaged procedure is created.
    This Packaged procedure has been created (in Location1 ) without any errors. But this procedure is in INVALID state. We tried to compile it remotely by using following statements, but still this is in invalid state .
    ALTER PACKAGE my_package COMPILE;
    ALTER PACKAGE my_package COMPILE BODY;
    If we run this package and package body manually, without any modifications after creating it remotly, it is becoming VALID state.
    I am not getting any idea, why it is creating in INVALID state. Any help is appreciated.
    Thanks in advance,
    Pal

    Ok, here's a previous response that I gave re. packages and their "states". Should give you a good idea what a state is...
    Packages tend to fail because of their "package state". A package has a "state" when it contains package level variables/constants etc. and the package is called. Upon first calling the package, the "state" is created in memory to hold the values of those variables etc. If an object that the package depends upon e.g. a table is altered in some way e.g. dropped and recreated, then because of the database dependencies, the package takes on an INVALID status. When you next make a call to the package, Oracle looks at the status and sees that it is invalid, then determines that the package has a "state". Because something has altered that the package depended upon, the state is taken as being out of date and is discarded, thus causing the "Package state has been discarded" error message.
    If a package does not have package level variables etc. i.e. the "state" then, taking the same example above, the package takes on an INVALID status, but when you next make a call to the package, Oracle sees it as Invalid, but knows that there is no "state" attached to it, and so is able to recompile the package automatically and then carry on execution without causing any error messages. The only exception here is if the thing that the package was dependant on has changes in such a way that the package cannot compile, in which case you'll get an Invalid package type of error.
    And if you want to know how to prevent discarded package states....
    Move all constants and variables into a stand-alone package spec and reference those from your initial package. Thus when the status of your original package is invlidated for whatever reason, it has no package state and can be recompiled automatically, however the package containing the vars/const will not become invalidated as it has no dependencies, so the state that is in memory for that package will remain and can continue to be used.
    As for having package level cursors, you'll need to make these local to the procedures/functions using them as you won't be able to reference cursors across packages like that (not sure about using REF CURSORS though.... there's one for me to investigate!)
    This first example shows the package state being invalided by the addition of a new column on the table, and causing it to give a "Package state discarded" error...
    SQL> set serveroutput on
    SQL>
    SQL> create table dependonme (x number)
      2  /
    Table created.
    SQL>
    SQL> insert into dependonme values (5)
      2  /
    1 row created.
    SQL>
    SQL> create or replace package mypkg is
      2    procedure myproc;
      3  end mypkg;
      4  /
    Package created.
    SQL>
    SQL> create or replace package body mypkg is
      2    v_statevar number := 5; -- this means my package has a state
      3
      4    procedure myproc is
      5      myval number;
      6    begin
      7      select x
      8      into myval
      9      from dependonme;
    10
    11      myval := myval * v_statevar;
    12      DBMS_OUTPUT.PUT_LINE('My Result is: '||myval);
    13    end;
    14  end mypkg;
    15  /
    Package body created.
    SQL>
    SQL> exec mypkg.myproc
    My Result is: 25
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        VALID
    SQL>
    SQL>
    SQL> alter table dependonme add (y number)
      2  /
    Table altered.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        INVALID
    SQL>
    SQL> exec mypkg.myproc
    BEGIN mypkg.myproc; END;
    ERROR at line 1:
    ORA-04068: existing state of packages has been discarded
    ORA-04061: existing state of package body "CRISP_INTELL.MYPKG" has been invalidated
    ORA-06508: PL/SQL: could not find program unit being called: "CRISP_INTELL.MYPKG"
    ORA-06512: at line 1
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        INVALID
    SQL>
    SQL> exec mypkg.myproc
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        VALIDAnd this next example shows how having the package variables in their own package spec, allows the package to automatically recompile when it is called even though it became invalidated by the action of adding a column to the table.
    SQL> drop table dependonme
      2  /
    Table dropped.
    SQL>
    SQL> drop package mypkg
      2  /
    Package dropped.
    SQL>
    SQL> set serveroutput on
    SQL>
    SQL> create table dependonme (x number)
      2  /
    Table created.
    SQL>
    SQL> insert into dependonme values (5)
      2  /
    1 row created.
    SQL>
    SQL> create or replace package mypkg is
      2    procedure myproc;
      3  end mypkg;
      4  /
    Package created.
    SQL>
    SQL> create or replace package mypkg_state is
      2    v_statevar number := 5; -- package state in seperate package spec
      3  end mypkg_state;
      4  /
    Package created.
    SQL>
    SQL> create or replace package body mypkg is
      2    -- this package has no state area
      3
      4    procedure myproc is
      5      myval number;
      6    begin
      7      select x
      8      into myval
      9      from dependonme;
    10
    11      myval := myval * mypkg_state.v_statevar;  -- note: references the mypkg_state package
    12      DBMS_OUTPUT.PUT_LINE('My Result is: '||myval);
    13    end;
    14  end mypkg;
    15  /
    Package body created.
    SQL>
    SQL> exec mypkg.myproc
    My Result is: 25
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        VALID
    SQL>
    SQL> alter table dependonme add (y number)
      2  /
    Table altered.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        INVALID
    SQL>
    SQL> exec mypkg.myproc
    My Result is: 25
    PL/SQL procedure successfully completed.

  • Casio G'zOne "package file is invalid"

    I just bought the Casio G'zOne and everytime I download an ap for it I get "Package file is invalid".  I use Play Store to get the ap.  I tried clearing the cache and data for Play Store, I turned the phone on and off, I took the battery out of the phone and turned it back on, I looked for System updates and downloaded any updates needed.  I bought 2 of these phones.  Both work perfect for everything except for downloading aps.  Is there a software update I am missing or are these phones too old to get newer aps.  Aps I have been trying to get are Words with friends, weatherchannel, Angry Birds, etc.  It seems that if I keep trying, then one of the phones will finally successfully download the ap and work.  But I watch my nieces with their Droid and Samsung Galaxy and they don't have any of these problems.  Any help would be apreciated.

    Thanks for all the help.  I talked to my Verizon dealer the other day and after I left them and got back home, I realized what the problem was.  My WiFi was causing the conflict for some reason.  My verizon dealer said some phones were not able to use the wifi to download aps or the wifi wasn't a good enough connection.  I turned the WiFi off on the phone and everything worked using 3G.  So I did get my 2 phones to download aps.  Thanks for all your help on this issue.
    I did have one other question.  Is there a way to set my time manually on my phone to a different time zone?  I live on the border of a time zone and the towers I use are both on central time, where I live on mountain time.  My old flip phone allowed me to put the current time zone time and also the Denver time - both at the same time.  I mostly work on the mountain time zone, but I do cross into the central time zone, so that really worked good on my flip phone.  But my new phone says "automatically set time" and I cannot control how the time is shown on the screen.

  • Office 2013 with Visio and Project Error - Package manifest is invalid

    In July I successfully created an App-V install of Office 2013 VL using the ODT. This week I decided to try just doing Visio as we don't install it or Project on all systems. I used my same customconfig.xml and just changed the ProPlusVolume to VisioProVolume
    and changed the source path. Everything downloaded and packaged fine. I was able to import into SCCM just fine and create a deployment to my test collection. However when I run the install out of Software Center I get (as part of a much longer error) the message
    in AppEnforce.log that the package manifest is invalid. Thinking that maybe I had to include Office as long with Visio I tried packaing all three items but still get the same error. Has anyone else seen this behavior and/or ideas how to fix it? Can I sequence
    just Visio or just Project? I'm including my config.xml just in case I've got something wrong with it that I haven't caught. Thanks
     <Configuration>
      <Add SourcePath="<networkpath>\Microsoft\AppVOffice2013\Sept\" OfficeClientEdition="32" >
        <Product ID="ProPlusVolume">
        <Language ID="en-us" />
        </Product>
        <Product ID="VisioProVolume">
        <Language ID="en-us" />
        </Product>
        <Product ID="ProjectProVolume">
        <Language ID="en-us" />
        </Product>
      </Add>
      <Display Level="None" AcceptEULA="TRUE" />
      <Logging Name="OfficeSetup.txt" Path="%temp%" />
      <Property Name="AUTOACTIVATE" Value="1" />
    </Configuration>

    Hy. I'm having the same problema.
    I'm trying to create na app-v package (v.5 SP2) of Office 2013.
    I downloaded the Office Deployment Tool for Click-to-Run from here:
    http://www.microsoft.com/en-us/download/details.aspx?id=36778
    I installed it into C:\Office2013pck shared that folder as 
    \\APPVMANAGER\Office2013 and mapped as Z:\.
    I changed the configuration.xml file to:
    <Configuration>
    <Add OfficeClientEdition="32" >
    <Product ID="ProPlusVolume">
    <Language ID="en-us" />
    </Product>
    <Product ID="VisioProVolume">
    <Language ID="en-us" />
    </Product>
    </Add>
    </Configuration>
    Then I ran in na elevated cmd:
    >Z:
    >\\APPV-CL-WIN7DEF\Office2013\setup.exe /download
    \\APPV-CL-WIN7DEF\Office2013\configuration.xml
    and
    >\\APPV-CL-WIN7DEF\Office2013\setup.exe /packager
    \\APPV-CL-WIN7DEF\Office2013\configuration.xml
    \\APPV-CL-WIN7DEF\Office2013\Appv
    Everything seemed to work fine.
    The creted folder had Office\Data\15.0.4649.1001 folder (I guessed this is a version number)
    When I tried to add the package to App-V Server (in the Console) I get the following error:
    An unexpected error occurred while retrieving AppV package manifest. Windows error code: 1465 - Windows was unable to parse the requested XML data.
    I tryied to publish it from powershell, getting the same error message agalluci image post shows.
    From the Event Log I got this additional information:
    There was a problem retrieving the requested package \\APPVMANAGER\AppVpck\Office\VisioProVolume_ProPlusVolume_en-us_x86.appv for import. Error message: Unspecified error
    Element '{http://schemas.microsoft.com/appv/2010/manifest}UsedKnownFolders' is unexpected according to content model of parent element '{http://schemas.microsoft.com/appx/2010/manifest}Package'.
    I haven't found any indication of which file is the manifest app-v file.
    I also haven't found any .xml with the "UsedKnownFolders" tag (I changed the .appv package extension to .zip and explored some of the files).
    I tryied creating a package for 32 and 64 bits, only office, office and visio, and office visio and project running Windos 7 and Windows 2012.
    Thanks in advance for any help.

  • Data Manager Package status Abort

    Hi Expert,
    I have an excel DM with three parameter, while running DM it get Abort, there is no Log details, inside the log the package status is success, but the same script i run it through UJKT, its running perfectly and its getting correct values.
    Please help me the exact problem is with my template, or BADI,
    Regards
    Vimal Raj

    Hi Bhagyesh Ravange,
    I did my scope and its working fine, but i try to run it for a all 30 unit through DM again its getting abort, is there any alternative solution is there, please help me to resolve it.
    *XDIM_MEMBERSET TEST_TIME AS %TIM% = %TEST_TIME_SET%
    *XDIM_MEMBERSET TEST_CATEGORY AS %CAT% = %TEST_CATEGORY_SET%
    *XDIM_MEMBERSET TEST_VERSION AS %VER% = %TEST_VERSION_SET%
    *XDIM_MEMBERSET TEST_UNIT AS %UT% = %TEST_UNIT_SET% //New Scope
    *START_BADI MAN_CALC01
    WRITE = ON
    TEST_TIME = %TIM%
    TEST_CATEGORY = %CAT%
    TEST_VERSION = %VER%
    TEST_UNIT = %UT%
    *END_BADI

  • SQL Plus session - "schema.package" has been invalidated on making any chng

    Hi
    I am in the process of testing a stored procedure. Whenever I make changes to the procedure I am executing it from the SQL Plus session. But whenever I make a change to the procedure - i have to close that particular SQL Plus session and open another one. I get the message:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-04061: existing state of has been invalidated
    ORA-04061: existing state of package body
    "schema.package" has been invalidated
    ORA-04065: not executed, altered or dropped package body
    Is there a way that I do not have to open a new SQL Plus session everytime I make change to the package?

    It does not help :(. I get this problem in a SQL+ session only when I make a change in a JDev session. I have to log off the SQL+ session and log back in and it is OK again without re-compling anything. I don't have a problem with two SQL+ session. Isn't that strange?
    ben

  • Document SIgnature Status becomes invalid after resigning

    Hi all,
    I  have a form with two Document Signature.
    When i clear and resign one of the Document Signature it status is invalid.
    Please suggest me a solution.
    Regards,
    S.V.Satish Kumar

    I tested the form you posted.  Here is what I found, but I am not completely clear on what all your script is supposed to be doing.
    Steps
    1)  I filled in the first "comment line"
    2)  I signed the first signature field
    3)  Results:  The signature was valid, the document status (see screen shot 1signature_docstatus.gif) reported the signature was valid.  The signature staus was valid as displayed in the signature panel (see screen shot 1signature_detail.gif)
    4)  I added and filled in a second "comment line"
    5)  I signed the second signature field
    6)  Results:  The first signature was valid, the second signature was valid, and the document status repored that ther were "unsigned changes" since the last signature was applied (see screen shot 2signature_docstatus.gif) The signature statuses were valid with subsequent changes made to the document as displayed in the signature panel (see screen shot 2signature_detail.gif)
    Don't confuse the "exclamation" mark icon with "Invalid", it is only a warning to inform you that changes have been made that are not "digitally signed", I suspect your some part of your script is causing this. If you want to have Acrobat\Reader display a green check mark icon, then you cannot make any changes to the document after the final signature has been applied.
    If you haven't done so, take a look at the sample I posted on your duplicate post in this forum ( http://forums.adobe.com/thread/492773?tstart=0 ).
    If a signature is "invalid" it will display a red "X" icon.
    Regards
    Steve

  • 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

  • Business Objects XI 3.1 SP4 Infoview and IE9 HTTP Status 400 - Invalid path

    Hi There,
    When I working in Infoview with IE9 32Bit or 64Bit and I right click on any object i.e Crystal Report, Folder, Webi Report etc. and select properties I get the following Error
    HTTP Status 400 - Invalid path /PlatformServices/properties was requested
    Has any one got a workaround or a solution for this problem.
    Server - BOE XI 3.1 with SP4 running on a Windows Server 2008 R2 64 bit.
    Client PC`s\Laptops  - Windows 7 64 bit
    Kind Regards,
    Frikkie

    Dear all,
    Seems the issue is browser compatibility ans the below solution may work in your case
    HTTP 400 occurs because of URL difference between IE9 and older versions of supported IE. To resolve this issue, this error in Tomcat will be redirected to a HTML script that applies new URL format. Please follow this 3 steps process:
    STEP ONE: Solution in InfoViewAppActions Folder:
    1) Go to “D:\Business Objects\Tomcat55\webapps\InfoViewAppActions” folder. This folder already has httperror_404.htm and httperror_500.jsp by default.  Rename httperror_404.htm to httperror_404_backup.htm.
    2) Copy and paste the attached file from InfoViewAppActions folder (httperror_400.htm and httperror_404.htm) into “D:\Business Objects\Tomcat55\webapps\InfoViewAppActions” folder. Go to “D:\Business Objects\Tomcat55\webapps\InfoViewAppActions\WEB-INF”
    3) Take a backup of web.xml file and name it as web_backup.xml
    4) Open the file and paste the following script after the Error 404 error handling and save.
    Before:
    <error-page>
            <error-code>404</error-code>
    <location>/httperror_404.htm</location>
        </error-page>
    After:
    <error-page>
    <error-code>404</error-code>
    <location>/httperror_404.htm</location>
        </error-page>
        <error-page>
    <error-code>400</error-code>
    <location>/httperror_400.htm</location>
        </error-page>
    STEP TWO: Solution in AnalyticalReporting Folder:
    1) Go to “D:\Business Objects\Tomcat55\webapps\ AnalyticalReporting” folder. This folder already has httperror_404.htm and httperror_500.jsp by default.  Rename httperror_404.htm to httperror_404_backup.htm.
    2) Copy and paste the attached file from AnalyticalReporting folder (httperror_400.htm and httperror_404.htm) into “D:\Business Objects\Tomcat55\webapps\ AnalyticalReporting” folder. Go to “D:\Business Objects\Tomcat55\webapps\ AnalyticalReporting \WEB-INF”
    3) Take a backup of web.xml file and name it as web_backup.xml
    4) Open the file and paste the following script after the Error 404 error handling and save.
    Before:
    <error-page>
    <error-code>404</error-code>
    <location>/httperror_404.htm</location>
        </error-page>
    After:
    <error-page>
    <error-code>404</error-code>
    <location>/httperror_404.htm</location>
        </error-page>
        <error-page>
    <error-code>400</error-code>
    <location>/httperror_400.htm</location>
        </error-page>

  • User rights to view package status

    A few of our Windows admins have been given the rights to create packages and deployments (mainly for the monthly updates).
    However, even though they can create and deploy them, they cannot see the package status.  So, if they go to: Software Updates-Deployment Packages then select their package, they can expand their package and see Package status.  However, if they
    click the Package Status folder, there is nothing underneath it when generally it would show the site, then you can see the dp's and if the package is in Install pending, Installed, etc.
    They have the following rights:
    Site:  Read
    Deployment packages class:  Administer, Create, Delete, Distribute, Manage folders, Modify, Read
    Instance:  Delete, Distribute, Modify, Read
    What am I missing?

    It is virtual impossible to get CM07 security fine tuned enough to allow for this type of thing but it is fairly easy to do in CM12. So upgrade to CM12 or push back on the reporting option.
    IMO there is nothing wrong with admin review things view the report, plus viewing the reports will have LESS impact on the server that viewing them via the console so.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SQL table for Package Status history

    Anyone know which SQL table stores the history for non-scheduled packages? I know tblScheduleHistory stores scheduled jobs but can't locate the history seen using "Package Status". This is for 5.0 SP2

    Please try tblDTSlog table

  • Package Status

    I am getting "ORA-04068 Existing state of Packages has been discarded" when trying to run a package from a form. Is it because of having Schema name and Package name as same?.

    Hi Claus,
    First of all - it's possible to make DM package status as Failed from inside custom logic badi: Package status for an "IF_UJ_CUSTOM_LOGIC" badi
    Analyze the badi code!
    The chain is fine, the script is also fine, the only question with badi parameters:
    CATEGORY_KD = (%CATEGORY_KD_SET%)
    What for you use brackets () ?
    Vadim

  • Combination of packages repeteiively becoming invalid

    Hello all,
    We are using Oracle 9.2.0.7.0 on Toad and SQL Developer on a database with a vast number of packages. At the moment for no clear reason 7 packages repetitively become invalid for no transparent reason. When we recompile using dbms_utility.compile_schema all object will reinstate themselves, and become valid. The next moment you look and want to use the packages they will be invalid again.
    We have tried to compare the packages with a comparable database, where the same revisions of the packages exist. On the test database these are correct and valid, on the acceptance database they (the 7 mentioned before) fall over.
    Can anybody give us any indications on where to find the problem? We have tried recompiling the forms that are part of the applications, but these are all valid. We are out of ideas now.
    Any help is greatly appreciated.
    Thanks,
    -victorbax-

    http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/general007.htm#
    This link might give you a clue on what might have happend inside
    http://it.toolbox.com/blogs/database-solutions/keep-track-of-oracle-object-dependences-2521
    Edited by: Maran Viswarayar on Sep 24, 2008 4:28 PM

  • Prestage Package status not reflecting on the console

    Hello,
    I have extracted some prestage packages successfully on the new DP but for some reasons, it doesn’t reflect the status on the primary server. After troubleshooting, I found
    this article which describes my issue similarly.
    http://eskonr.com/tag/sccm-2012/page/2/
    Where it says, “Will reject this STA for DP”, that similarly matches with my concern.
    I have followed the article regarding the script for compare the version difference but what I am not sure is, I believe it ultimately says to redistribute the content to
    the DP once more ?
    Let me know if I am wrong or if there is any other way as this is happening for many prestage packages.
    Not sure how it started all of a sudden when it working since a day before.

    Hello, 
    I have created a new prestage package and it extracted successfully as per the below message in Distmgr.log but for some reasons the status doesnt reflect on the console.
    Please help as this is really urgent
    Processing status update for package AAA SMS_DISTRIBUTION_MANAGER
    11/12/2014 9:25:21 AM 11344 (0x2C50)
    Successfully updated the package server status for ["Display=\\<DP server>\"]MSWNET:["SMS_SITE=SiteID"]\\<DP server>\ for package AAA, Status 3
    SMS_DISTRIBUTION_MANAGER 11/12/2014 9:25:21 AM
    11344 (0x2C50)
    STATMSG: ID=2330 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=<primaryserver>SITE=<SiteID> PID=19600 TID=11344 GMTDATE=Wed Nov 12 03:55:21.886 2014 ISTR0="AAA" ISTR1="["Display=\\<DP
    server>\"]MSWNET:["SMS_SITE=<SiteID>"]\\<DP server>\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400
    AVAL0="AAA" AID1=404 AVAL1="["Display=\\<DP server>\"]MSWNET:["SMS_SITE=<SiteID>"]\\<DP server>\"
    SMS_DISTRIBUTION_MANAGER 11/12/2014 9:25:21 AM
    11344 (0x2C50)
    Successfully delete package status file C:\Program Files\Microsoft Configuration Manager\inboxes\distmgr.box\INCOMING\BKP96Y8Q.STA
    SMS_DISTRIBUTION_MANAGER 11/12/2014 9:25:21 AM
    11344 (0x2C50)

Maybe you are looking for

  • Can we export FR Book in to Word doc? (Urgent)

    Hi all, We are using HFR 11.1.1.3 for Hyperion Book, we are having a requirement from client asking to export HRF Book in to MS-Word doc. is it posssible to export FR Book to Word doc. if so can any one please help me how it can be done??? Sri......

  • Changing user's name as shown on iPod

    My daughter has given me her old iPod following me giving her a new one. When I open it up to download from iTunes, it shows her name. How do I change that name to mine? Thanks for any help.

  • Is there a way to recover deleted files from months ago?

    Is there a way to recover deleted files from months ago?

  • Files don't appear on my desktop

    So, happens this strange thing: when i download a file, i choose as destination the desktop. The download finishes, but no file is shown! I have to go in spotlight, search the name of the file, choose show it in the finder, and then it appears! I use

  • Can JDE BSSV on 11g be deployed without SSL

    I am integrating JDE E1 with FMW SOA 11g. I want to know if BSSVs can be deployed on WLS without SSL. I understand that WLS 10.3.2 had a product limitation. Any help or pointers will be appreciated. Thanks, Ashwani