Corrupt Object message after cache validation

Help!
I am trying to delete a single UserEvent object that is in a one to many collection private owned by a User object.
The way I am doing this is by
1) building a prototype of the UserEvent to delete,
2) setting its primary key attributes (User and date),
3) reading the actual cache object,
4) registering the actual cached object in the unit of work and obtaining a working copy,
5) removing the UserEvent working copy from the its User's UserEvent collection, and
6) setting the User reference in the UserEvent working copy to null
When I commit the unit of work I do not see any delete statements. Instead I called printRegisteredObjects();
validateCache();
validateObjectSpace();
and in my output I see a "cache corrupt" message. I have searched the forums for this and found nothing - can someone kindly give me a clue about how to debug this?
Many thanks
James Carlyle
eventPrototype.setUser(user);
eventPrototype.setEventDate(new Date(Long.parseLong(eventTimes[s])));
UserEvent actual = (UserEvent) getReadSession().readObject(eventPrototype);
UserEvent workingCopy = (UserEvent) this.getUnitOfWork().registerExistingObject(actual);
System.out.println(workingCopy.getUser().getUserEvents().remove(workingCopy));
workingCopy.setUser(null);
workingCopy.setEventSource(null);
workingCopy.setEventType(null);
this.getUnitOfWork().printRegisteredObjects();
this.getUnitOfWork().validateCache();
this.getUnitOfWork().validateObjectSpace();
<opm:attribute-mapping xsi:type="toplink:one-to-many-mapping">
<opm:attribute-name>userEvents</opm:attribute-name>
<opm:reference-class>com.sky.skynet.core.UserEvent</opm:reference-class>
<opm:private-owned>true</opm:private-owned>
<opm:target-foreign-key>
<opm:field-reference>
<opm:source-field table="USEREVENTS" name="USERID" xsi:type="opm:column"/>
<opm:target-field table="USERS" name="USERID" xsi:type="opm:column"/>
</opm:field-reference>
</opm:target-foreign-key>
<toplink:container xsi:type="toplink:list-container-policy">
<toplink:collection-type>oracle.toplink.indirection.IndirectList</toplink:collection-type>
</toplink:container>
<toplink:indirection xsi:type="toplink:transparent-collection-indirection-policy"/>
<toplink:selection-query xsi:type="toplink:read-all-query">
<toplink:container xsi:type="toplink:list-container-policy">
<toplink:collection-type>oracle.toplink.indirection.IndirectList</toplink:collection-type>
</toplink:container>
</toplink:selection-query>
</opm:attribute-mapping>
[TopLink Finest]: 2005.02.10 12:09:49.966--ServerSession(1527262533)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Execute query ReadObjectQuery(com.sky.skynet.core.User)
[TopLink Finer]: 2005.02.10 12:09:54.640--ServerSession(1527262533)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--client acquired
[TopLink Finest]: 2005.02.10 12:09:54.641--ClientSession(1493049610)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Execute query ReadObjectQuery(com.sky.skynet.core.UserEvent)
[TopLink Finer]: 2005.02.10 12:09:54.642--ServerSession(1527262533)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--client acquired
[TopLink Finer]: 2005.02.10 12:09:54.663--ClientSession(1736789279)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--acquire unit of work: 1638538680[TopLink Finest]: 2005.02.10 12:09:54.664--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Register the existing object com.sky.skynet.core.UserEvent@608a6351
[TopLink Finest]: 2005.02.10 12:09:54.676--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Register the existing object com.sky.skynet.core.EventSource@69eb424b
[TopLink Finest]: 2005.02.10 12:09:54.677--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Register the existing object com.sky.skynet.core.EventType@544d8040
[TopLink Finest]: 2005.02.10 12:09:54.677--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Register the existing object com.sky.skynet.core.User@2c1f14fd
[TopLink Finest]: 2005.02.10 12:09:54.687--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Register the existing object com.sky.skynet.core.UserEvent@608a6351
05/02/10 00:09:54 true
[TopLink Severe]: 2005.02.10 12:09:54.696--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--
UnitOfWork identity hashcode: 1638538680
All Registered Clones:
Key: [1] Identity Hash Code: 1252288055 Object: com.sky.skynet.core.EventType@4aa46637
Key: [1] Identity Hash Code: 1968164628 Object: com.sky.skynet.core.EventSource@754fcf14
Key: [Fri Mar 20 05:00:00 GMT 2020 null] Identity Hash Code: 748356780 Object: com.sky.skynet.core.UserEvent@2c9b04ac
Key: [801] Identity Hash Code: 1865599785 Object: com.sky.skynet.core.User@6f32cb29
[TopLink Finer]: 2005.02.10 12:09:54.696--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--validate cache.
[TopLink Finest]: 2005.02.10 12:09:54.699--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--stack of visited objects that refer to the corrupt object: []
[TopLink Finer]: 2005.02.10 12:09:54.700--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--corrupt object referenced through mapping: null
[TopLink Finer]: 2005.02.10 12:09:54.700--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--corrupt object: com.sky.skynet.core.UserEvent@2c9b04ac
[TopLink Finer]: 2005.02.10 12:09:54.700--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--validate object space.
[TopLink Finer]: 2005.02.10 12:09:54.709--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--begin unit of work commit
[TopLink Finer]: 2005.02.10 12:09:54.714--ClientSession(1736789279)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Connection(412999145)--begin transaction
[TopLink Finest]: 2005.02.10 12:09:54.715--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Execute query UpdateObjectQuery(com.sky.skynet.core.User@6f32cb29)
[TopLink Finest]: 2005.02.10 12:09:54.715--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Execute query DeleteObjectQuery(com.sky.skynet.core.UserEvent@2c9b04ac)
[TopLink Fine]: 2005.02.10 12:09:54.716--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Connection(412999145)--DELETE FROM USEREVENTS WHERE ((EVENTDATE = ?) AND (USERID = ?))
bind => [2020-03-20 05:00:00.0, null]
[TopLink Finer]: 2005.02.10 12:09:54.739--ClientSession(1736789279)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--Connection(412999145)--commit transaction
[TopLink Finer]: 2005.02.10 12:09:54.763--UnitOfWork(1638538680)--Thread(Thread[HttpRequestHandler-1810844459,5,main])--end unit of work commit
Using
Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)
Oracle TopLink - 10g Developer Preview 3 (10.1.3.0 ) (Build 041116)

Found the answer. I was using an instance of a subclass of User in order to get the cached copy of the UserEvent and thence the working copy. If instead I instantiate a new User and set its primary key userId, and then use that instead to start the process, it works. I still don't understand how, though, since after the cached copy of UserEvent is obtained I wouldn't have thought it mattered how it was obtained.
James

Similar Messages

  • Why do i continuously get corrupted content message after installing newest updates?

    I use Project Free TV quite a bit. It was working great, but after I installed new updates for Firefox, most of the links don't work and gives me Corrupted Content message. The links work fine through Explorer.
    For example:
    '''Corrupted Content Error'''
    The page you are trying to view cannot be shown because an error in the data transmission was detected.
    The page you are trying to view cannot be shown because an error in the data transmission was detected.Please contact the website owners to inform them of this problem.''

    I use Project Free TV quite a bit. It was working great, but after I installed new updates for Firefox, most of the links don't work and gives me Corrupted Content message. The links work fine through Explorer.
    For example:
    '''Corrupted Content Error'''
    The page you are trying to view cannot be shown because an error in the data transmission was detected.
    The page you are trying to view cannot be shown because an error in the data transmission was detected.Please contact the website owners to inform them of this problem.''

  • Dde server windws corrupt file message after labview crashed

    Due to unexpected system shutdown (ups failed) everything i was working on got closed. When I restarted labview I get this.
    And labVIEW is not starting now.

    Ok now seems like everything is working. Restarted the system and ran the check disk and opened labview and it is opening without any problem.
    Ah no need for any repair/reinstall.

  • After 6 tries to load Photoshop CS6 on my new laptop, I keep getting the following message after I enter my valid serial number: "Serial number you provided is valid but a qualifying product could not be found on this computer."  What I'm, trying to do is

    After 6 tries to load Photoshop CS6 on my new laptop, I keep getting the following message after I enter my valid serial number: "Serial number you provided is valid but a qualifying product could not be found on this computer."  What I'm, trying to do is download the qualifying product which I purchased just a year ago?  Any help will be greatly appreciated.

    I contacted Adobe support Chat and they confirmed the serial number and gave me a response code number to enter. Once that was entered the product downloaded immediately. The whole process took 10 minutes.  Thank you for your response. I'm all good now.

  • IPod "corrupted" message after updating

    I have noticed that people have been having this problem, too. Since updating my iTunes, my computer no longer has been recognizing my iPod. (I keep getting a message saying that the iPod is "corrupted".) It's been almost three weeks and I haven't been able to use my iPod because of this. I don't know what to do. I went to disk management and tried to change the drive, etc. My computer doesn't have a different drive besides the c-drive. Tried a different USB-port. No luck. Any other leads? It's driving me nuts. My iPod was fine (have had it for over two years) until the recent updated version of iTunes. Is it my Dell? Does iTunes not work with particular versions of Dell? What is it? Help.
    Thanks.

    Have you seen these?
    What to do if iTunes displays a corrupt file message.
    Da Gopha's corrupt file info.
    "I went to disk management and tried to change the drive, etc. My computer doesn't have a different drive besides the c-drive."
    You're looking for the iPod as a drive. If the device manager is empty, see this: iPod not appearing in Windows device manager.

  • Updating InputText after a validation error

    Hi everyone,
    I am having problems updating InputText after a validation error.
    Im using jdeveloper 11.1.1.1.0
    Steps without error validation works correctly
    1.-I put 3 in the component "value" (second InputText)
    2 .- validation begins, and rightly
    3 .- I put the value 1 component "optional" (first imputtext)
    4 .- Click the button "move"
    5 .- The componte "value" modify its contents appearing 1
    Steps with error validation not working properly
    1.-I put 4 in the component "value" (second InputText)
    2 .- validation begins, and it is wrong. Errror message appears
    3 .- I put the value 1 component "optional" (first imputtext)
    4 .- Click the button "move"
    5 .- The componte "value" does not alter its contents.
    Why not change its value after validation error?
    I included an example with two and a button InputText
    <af:inputText label="Optional" id="it1" autoSubmit="true" />
    <af:commandButton text="commandButton 1" id="cb1" immediate="true" actionListener="#{inputExample.move}"/>
    <af:inputText label="Value" id="it2" immediate="true" autoSubmit="true" validator="#{inputExample.validatorExample}" value="#{inputExample.targetValue}"/>
    public void validatorExample(FacesContext facesContext, UIComponent uIComponent, Object object) {
    Number number = null;
    try {
    number = new Number(object);
    } catch (SQLException e) {
    if ((number.longValue() % 2) == 0) {
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_ERROR, "ES PAR", "ES PAR");
    ((RichInputText)uIComponent).setValid(false);
    throw new ValidatorException(message);
    public void move(ActionEvent actionEvent) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    UIComponent x = facesContext.getViewRoot().findComponent("it1");
    RichInputText input1 = (RichInputText)x;
    String value = (String)input1.getValue();
    UIComponent x2 = facesContext.getViewRoot().findComponent("it2");
    RichInputText input2 = (RichInputText)x2;
    input2.setValue(value);
    RequestContext.getCurrentInstance().addPartialTarget(input2);
    }

    Yes but the action will be executed with invalid data.
    After validation fails the new (invalid) value is not set so when you get the value you get the previous (valid) one.
    If you want the validation just to warn the user but allow him to continue with executing actions with the new values then you should not use a validator.
    You could instead use a valueChangeListener were you can display a message to the user allowing the value to be set normaly.
    Gabriel.

  • My Firefox won't quit and gives a "not responding" message after I use Google Mail. I have tried starting in "safe" mode and the problem still occurs.

    I have an issue where Firefox wont' quit and gives a "not responding" message after I have been using Google Mail. It works fine when I am not using that program. I have tried Safe Mode and the problem still happens when I go to Google Mail, so it is not connected with add-ons, extensions, etc.

    Many site issues can be caused by corrupt cookies or cache.<BR><BR>
    Clear the Cache<BR>
    '''''Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"'''''
    <BR><BR>and<BR><BR>
    Remove Cookies<BR>'''''Firefox/Tools > Options > Privacy.'''''<BR>
    Under '''History''', select Firefox will '''Use Custom Settings'''.<BR>
    There is a button on the right side called '''Show Cookies'''.<BR><BR>
    If there is still a problem,
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]'''''
    <BR>While you are in safe mode; '''''Firefox Options > Advanced > General'''''.<BR>
    Look for and turn off '''Use Hardware Acceleration'''.<BR>
    Poke around safe web sites and see if there is still a problem. Then restart.

  • DataStateCorruptException: Attempt to access corrupt object:

    the scenario is like this
    i am modifying ess~lea application
    ess~lea-VcWorkList ~VcWorkListView
                       ~TeamCalendarView (newly added view)
    the data is populated into the table in TeamCalendar thru RFC
    when i check-in, activate , release,
    in Transport studio, trying to consolidate ( after activation and released )
    i am receiving the following error message
    [System.err]      at com.sap.tc.buildcontroller.CBSBuildController.main(CBSBuildController.java:168)     [wdgen] [Info]    Catching throwable Attempt to access corrupt object: //WebDynpro/View:com.sap.xss.hr.lea.worklist.TeamCalendar!
         [wdgen] [Info]    DataStateCorruptException: Attempt to access corrupt object: //WebDynpro/View:com.sap.xss.hr.lea.worklist.TeamCalendar!
    //WebDynpro/View:com.sap.xss.hr.lea.worklist.TeamCalendar  _> DataStateCorruptException: Attempt to access corrupt object:

    For me this error didn't stop until I deselected some old versions of apps on the Prepare screen. I had just been updating the apps from within Supervise and apparently the lists are considered separately - I had never gone back to the Prepare screen after originally setting up our iPads.
    This was much more than a "purely cosmetic" problem for me though since I'm running a Mac Mini as a monitor-less synch station and if it was ever restarted it would hang at this error instead of opening Configurator. I would have to log in just to press "OK". Some additional info in that error message would have been helpful.

  • How to Display a message after inserting row in table............

    Hi
    I want to display a message after inserting rows in table like *'you have inserted a new row successfully*'.
    i am using the createinsert ADF Button to insert the rows in table.after that i am comitting it.
    after commiting i want to display message for the user.for this what i need to do.
    Please help me.
    Sailaja.

    user10860137
    Can you please explain me the each line in the code briefly.
    +public String saveButton_action(){+
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("Commit");
    Object result = operationBinding.execute();
    +// note "!" operator has been removed from the default code.+
    +if(operationBinding.getErrors().isEmpty()){+
    FacesContext ctx = FacesContext.getCurrentInstance();
    FacesMessage saveMsg = new FacesMessage("Record Saved Successfully");
    ctx.addMessage(null,saveMsg);
    +}+
    return null;
    +}+
    And i have requirement to show the message on favcet "status bar".not in a popup window.(from the above code the message is showing in popup window. )the Layout i am using is PanelCollection.
    can you tell me what i need to do.
    Thanks
    Sailaja.
    Edited by: sj0609 on Mar 19, 2009 8:03 AM

  • Version 31.3, error in upadting RSS feeds. Error Message - not a valid feed.

    After upgrading to version 31.3, error in updating RSS feeds.
    Error message - not a valid feed.
    Unable to Attach screen shot of feed validator results

    The answer is in the guide, please read it carefully:
    https://support.mozilla.org/en-US/kb/how-subscribe-news-feeds-and-blogs
    You can turn on extreme debugging as well. The problem is always with the publisher failing to follow specs; inform them to do so.

  • Cannot update.  Get error message 1648, "no valid sequence could be found for the set of patches."

    Cannot update.  Get error message 1648, "no valid sequence could be found for the set of patches."

    Uninstall the corrupt Reader version using http://labs.adobe.com/downloads/acrobatcleaner.html then download and install the latest Reader from http://get.adobe.com/reader/enterprise/

  • ITunes library.itl cannot be read error message after new installation

    Hi,
    I have just downloaded iTunes to install on a new Lenovo laptop running Windows 8.1, and after installation I have received the following error message "iTunes library.itl cannot be read because it was created by a newer version of iTunes".
    It was a 'clean' installation - I did not have any previous versions installed and have not yet copied my music across to the laptop or connected by iPod.
    Any suggestions?
    Thanks

    Try the following user tip:
    Empty/corrupt iTunes library after upgrade/crash

  • Many  db  objects error after Upgrate EBS 12.1.1 to EBS 12.1.2(7303033)

    many db objects error after apply patch 7303033
    Error db objects
    APPS.ENGECOBO
    APPS.OKL_REVERSE_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB
    APPS.OKL_PROCESS_TMPT_SET_PVT_W
    APPS.OKL_TRANS_CONTRACTS_PVT_W
    APPS.OKL_TRANSACTION_PVT_W
    APPS.OKL_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PVT_W
    APPS.OKL_LA_JE_PUB
    APPS.OKL_TRANSACTION_PUB
    APPS.OKL_GENERATE_ACCRUALS_PVT
    APPS.OKL_AM_ASSET_DISPOSE_PVT
    APPS.OKL_AM_ASSET_RETURN_PVT
    APPS.OKL_CS_WF
    APPS.OKL_FUNDING_WF
    APPS.OKL_LA_JE_PVT
    APPS.OKL_INTEREST_CALC_PVT
    APPS.OKL_LOSS_PROV_PVT
    APPS.OKL_MISC_TRANS_PVT
    APPS.OKL_MASS_REBOOK_PVT
    APPS.OKL_AM_LEASE_LOAN_TRMNT_PVT
    APPS.OKL_AM_LOAN_TRMNT_PVT
    APPS.OKL_AM_LEASE_TRMNT_PVT
    APPS.OKL_RELEASE_PVT
    APPS.OKL_AM_QUOTES_WF
    APPS.OKL_REV_LOSS_PROV_PVT
    APPS.OKL_SPLIT_CONTRACT_PVT
    APPS.OKL_LA_STREAM_PVT
    APPS.OKL_SPLIT_ASSET_PVT
    APPS.OKL_TRANS_CONTRACTS_PVT
    APPS.OKL_AM_TERMNT_QUOTE_PVT
    APPS.OKL_CS_TRANSFER_ASSUMPTION_PVT
    APPS.OKL_PROCESS_TMPT_SET_PVT
    APPS.OKL_TRANSACTION_PVT
    APPS.OKL_VARIABLE_INTEREST_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB_W
    APPS.OKL_TRANS_CONTRACTS_PUB_W
    APPS.OKL_TRX_CONTRACTS_PUB_W
    APPS.OKL_TRANSACTION_PUB_W
    APPS.OKL_PROCESS_TMPT_SET_PUB_W
    APPS.OKL_CS_PRINCIPAL_PAYDOWN_PVT
    APPS.EAM_PROCESS_WO_PVT
    APPS.OKL_AM_CNTRCT_LN_TRMNT_PVT
    APPS.OKL_SERVICE_INTEGRATION_PVT
    APPS.OKL_PERIOD_SWEEP_PVT
    APPS.OKL_SEC_AGREEMENT_PVT
    APPS.IGS_FI_CREDIT_PVT
    APPS.FFP55366_01011990
    APPS.FFP51404_01011997
    APPS.FFP51848_01011990
    APPS.FFP55358_01011990
    APPS.FFP55370_01011990
    APPS.FFP50529_01011900
    APPS.FFP50775_01011900
    APPS.FFP52681_01071999
    APPS.FFP50533_01011900
    APPS.FFP55069_01011990
    APPS.FFP50531_01011900
    APPS.FFP55060_01011990
    APPS.FFP51840_01011990
    APPS.FFP55372_01011990
    APPS.FFP50773_01011900
    APPS.FFP55067_01011990
    APPS.FFP53497_01012001
    APPS.FFP51406_01011997
    APPS.FFP52621_01011996
    APPS.FFP52090_01011990
    APPS.FFP55065_01011990
    APPS.FFP53540_01012001
    APPS.FFP51837_01011990
    APPS.FFP55364_01011990
    APPS.FFP52115_01011990
    APPS.FFP50506_01011900
    APPS.FFP53477_01012001
    APPS.FFP55375_01011990
    APPS.FFP50508_01011900
    APPS.FFP50512_01011900
    APPS.FFP52744_01071999
    APPS.FFP50510_01011900
    APPS.FFP52724_01071999
    APPS.FFP55355_01011990
    APPS.FFP55058_01011990
    APPS.FFP54406_01011995
    APPS.FFP54413_01011995
    APPS.FFP50577_01011900
    APPS.FFP51867_01011990
    APPS.FFP51411_01011999
    APPS.FFP51887_01011990
    APPS.FFP54398_01011995
    APPS.FFP50576_01011900
    APPS.FFP54411_01011995
    APPS.FFP54409_01011995
    APPS.FFP54520_01011995
    APPS.FFP52481_01010001
    APPS.FFP52683_01071999
    APPS.FFP50527_01011900
    APPS.FFP51843_01011990
    APPS.FFP54474_01011995
    APPS.FFP55062_01011990
    APPS.FFP55361_01011990
    APPS.CSC_ACTION_ASSEMBLER_PVT_W
    FLOWS_010500.ImportExport
    FLOWS_010500.ImportExport
    PUBLIC.WWV_FLOW_LIST_OF_VALUES_DATA
    PUBLIC.WWV_FLOW_LISTS_OF_VALUES$
    PUBLIC.WWV_FLOW_GENERIC
    PUBLIC.WWV_FLOW_FIELD_TEMPLATES
    RE.RE_PROFILER
    APPS.FFP58914_01010001
    APPS.FFP58915_01010001
    APPS.FFP58920_01010001
    APPS.FFP58919_01010001
    APPS.OKL_PROP_TAX_ADJ_PVT
    APPS.OKL_PROCESS_PPD_PVT
    APPS.OKL_STREAM_MIGRATION_PVT
    APPS.FFP53720_01011990
    APPS.FFP51846_01011990
    APPS.FFP51888_01011990
    APPS.FFP55078_01011990
    APPS.FFP59117_01011990
    APPS.FFP59110_01011990
    APPS.FFP59131_01011990
    APPS.FFP51844_01011990
    APPS.FFP56331_01011990
    APPS.FFP54827_01012000
    APPS.FFP55070_01011990
    APPS.FFP56324_01011990
    APPS.FFP50523_01011900
    APPS.FFP57220_01012000
    APPS.FFP55080_01011990
    APPS.FFP59112_01011990
    APPS.FFP50522_01011900
    APPS.FFP55330_01011998
    APPS.FFP51850_01011990
    APPS.FFP50928_01011997
    APPS.FFP56326_01011990
    APPS.FFP51838_01011990
    APPS.FFP56333_01011990
    APPS.FFP50583_01011900
    APPS.FFP56716_01012001
    APPS.FFP51906_01011990
    APPS.FFP54824_01012000
    APPS.FFP59175_01012004
    APPS.FFP55063_01011990
    APPS.FFP59273_01012004
    APPS.FFP57215_01011999
    APPS.FFP54518_01011995
    APPS.FFP54525_01011995
    APPS.FFP55367_01011990
    APPS.FFP55079_01011990
    APPS.FFP51068_01011997
    APPS.FFP59195_01011990
    APPS.FFP56739_01011999
    APPS.FFP59111_01011990
    APPS.FFP51849_01011990
    APPS.FFP56325_01011990
    APPS.FFP54909_01011990
    APPS.FFP55077_01011990
    APPS.FFP56332_01011990
    APPS.FFP54912_01011990
    APPS.FFP59116_01011990
    APPS.FFP59192_01011990
    APPS.FFP59200_01011990
    APPS.FFP59115_01011990
    APPS.FFP56053_01012000
    APPS.FFP59251_01012004
    APPS.FFP54394_01011995
    APPS.FFP56329_01011990
    APPS.FFP55331_01011998
    APPS.FFP56323_01011990
    APPS.FFP56330_01011990
    APPS.FFP56322_01011990
    APPS.FFP55359_01011990
    APPS.FFP58907_01010001
    APPS.FFP53224_01011999
    APPS.FFP1915_01010001
    APPS.FFP55373_01011990
    APPS.FFP55240_26121999
    APPS.FFP56596_01012001
    APPS.FFP57190_01012000
    APPS.FFP54407_01011995
    APPS.FFP56052_01012000
    APPS.FFP55328_01011998
    APPS.FFP54414_01011995
    APPS.FFP55356_01011990
    APPS.FFP54393_01011995
    APPS.FFP54449_01011995
    APPS.FFP56337_01011995
    APPS.FFP54524_01011995
    APPS.FFP1919_01010001
    APPS.FFP56434_01012001
    APPS.FFP58163_01011951
    APPS.FFP56056_01012000
    APPS.FFP54404_01011995
    APPS.FFP54523_01011995
    APPS.FFP58909_01010001
    APPS.FFP58908_01010001
    APPS.FFP1918_01010001
    APPS.FFP58906_01010001
    APPS.FFP58913_01010001
    APPS.FFP58912_01010001
    APPS.FFP54823_01012000
    APPS.FFP51841_01011990
    APPS.FFP50581_01011900
    APPS.FFP55306_01011995
    APPS.FFP50525_01011900
    APPS.FFP59191_01011990
    APPS.FFP59114_01011990
    APPS.FFP51966_01011998
    APPS.FFP56321_01011990
    APPS.FFP57217_01012000
    APPS.FFP56328_01011990
    APPS.FFP50524_01011900
    APPS.FFP57196_01012000
    APPS.FFP55362_01011990
    APPS.FFP59113_01011990
    APPS.FFP57216_01012000
    APPS.FFP59176_01012004
    APPS.FFP55243_26121999
    APPS.FFP56327_01011990
    APPS.FFP57126_01011995
    APPS.FFP55333_01011998
    APPS.FFP54403_01011995
    APPS.FFP55368_01011990
    APPS.FFP54522_01011995
    APPS.FFP54948_01011990
    APPS.FFP57125_01011995
    APPS.FFP54521_01011995
    APPS.FFP1916_01010001
    APPS.FFP1917_01010001
    APPS.FFP58911_01010001
    APPS.FFP58918_01010001
    APPS.FFP58910_01010001
    APPS.FFP60555_01010001
    APPS.FFP60587_01011990
    APPS.FFP60588_01011990
    APPS.FFP60589_01011990
    APPS.FFP60591_01011990
    APPS.FFP60592_01011990
    APPS.FFP60593_01011990
    APPS.FFP60606_01011990
    APPS.FFP60607_01011990
    APPS.FFP60793_01012004
    APPS.FFP60833_01012000
    HERMAN.RDT_1
    APPS.FFP60943_01011990
    APPS.FFP60944_01011990
    APPS.FFP60963_01012000
    APPS.FFP60964_01012000
    APPS.OKL_AM_BAL_WRITEOFF_PVT
    APPS.OKL_LA_SALES_TAX_PVT
    APPS.FFP61156_01010001
    APPS.FFP61138_01010001
    APPS.FFP61170_01010001
    APPS.FFP61152_01010001
    APPS.FFP61124_01010001
    APPS.FFP61277_01011951
    APPS.FFP61440_01011990
    APPS.FFP52982_01010001
    APPS.FFP61511_01012000
    APPS.FFP61532_01011990
    APPS.OKL_MULTIGAAP_ENGINE_PVT
    APPS.XLA_00707_AAD_C_000026_PKG
    APPS.XLA_20065_AAD_C_000030_PKG
    APPS.FSAH_DUPLICATE_PKG
    APPS.FFP61884_01010001
    APPS.FFP61924_01010001
    APPS.FFP61920_01010001
    APPS.FFP61867_01010001
    APPS.FFP61871_01010001
    APPS.FFP61926_01010001
    APPS.FFP61912_01010001
    APPS.FFP61897_01010001
    APPS.FFP61919_01010001
    APPS.XLA_00707_AAD_C_000044_PKG
    APPS.MSD_DEM_OBI_DEMANTRA_MV
    APPS.FFP62356_01012000
    APPS.FFP62357_01012000
    APPS.FFP62358_01012000
    APPS.FFP62359_01012000
    APPS.FFP62376_01012000
    APPS.FFP62377_01012000
    APPS.FFP62378_01012000
    APPS.FFP62379_01012000
    CA.F
    CA.G

    user8019167 wrote:
    many db objects error after apply patch 7303033
    Error db objects
    APPS.ENGECOBO
    APPS.OKL_REVERSE_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB
    APPS.OKL_PROCESS_TMPT_SET_PVT_W
    APPS.OKL_TRANS_CONTRACTS_PVT_W
    APPS.OKL_TRANSACTION_PVT_W
    APPS.OKL_CONTRACT_PVT
    APPS.OKL_GENERATE_ACCRUALS_PVT_W
    APPS.OKL_LA_JE_PUB
    APPS.OKL_TRANSACTION_PUB
    APPS.OKL_GENERATE_ACCRUALS_PVT
    APPS.OKL_AM_ASSET_DISPOSE_PVT
    APPS.OKL_AM_ASSET_RETURN_PVT
    APPS.OKL_CS_WF
    APPS.OKL_FUNDING_WF
    APPS.OKL_LA_JE_PVT
    APPS.OKL_INTEREST_CALC_PVT
    APPS.OKL_LOSS_PROV_PVT
    APPS.OKL_MISC_TRANS_PVT
    APPS.OKL_MASS_REBOOK_PVT
    APPS.OKL_AM_LEASE_LOAN_TRMNT_PVT
    APPS.OKL_AM_LOAN_TRMNT_PVT
    APPS.OKL_AM_LEASE_TRMNT_PVT
    APPS.OKL_RELEASE_PVT
    APPS.OKL_AM_QUOTES_WF
    APPS.OKL_REV_LOSS_PROV_PVT
    APPS.OKL_SPLIT_CONTRACT_PVT
    APPS.OKL_LA_STREAM_PVT
    APPS.OKL_SPLIT_ASSET_PVT
    APPS.OKL_TRANS_CONTRACTS_PVT
    APPS.OKL_AM_TERMNT_QUOTE_PVT
    APPS.OKL_CS_TRANSFER_ASSUMPTION_PVT
    APPS.OKL_PROCESS_TMPT_SET_PVT
    APPS.OKL_TRANSACTION_PVT
    APPS.OKL_VARIABLE_INTEREST_PVT
    APPS.OKL_GENERATE_ACCRUALS_PUB_W
    APPS.OKL_TRANS_CONTRACTS_PUB_W
    APPS.OKL_TRX_CONTRACTS_PUB_W
    APPS.OKL_TRANSACTION_PUB_W
    APPS.OKL_PROCESS_TMPT_SET_PUB_W
    APPS.OKL_CS_PRINCIPAL_PAYDOWN_PVT
    APPS.EAM_PROCESS_WO_PVT
    APPS.OKL_AM_CNTRCT_LN_TRMNT_PVT
    APPS.OKL_SERVICE_INTEGRATION_PVT
    APPS.OKL_PERIOD_SWEEP_PVT
    APPS.OKL_SEC_AGREEMENT_PVT
    APPS.IGS_FI_CREDIT_PVT
    APPS.FFP55366_01011990
    APPS.FFP51404_01011997
    APPS.FFP51848_01011990
    APPS.FFP55358_01011990
    APPS.FFP55370_01011990
    APPS.FFP50529_01011900
    APPS.FFP50775_01011900
    APPS.FFP52681_01071999
    APPS.FFP50533_01011900
    APPS.FFP55069_01011990
    APPS.FFP50531_01011900
    APPS.FFP55060_01011990
    APPS.FFP51840_01011990
    APPS.FFP55372_01011990
    APPS.FFP50773_01011900
    APPS.FFP55067_01011990
    APPS.FFP53497_01012001
    APPS.FFP51406_01011997
    APPS.FFP52621_01011996
    APPS.FFP52090_01011990
    APPS.FFP55065_01011990
    APPS.FFP53540_01012001
    APPS.FFP51837_01011990
    APPS.FFP55364_01011990
    APPS.FFP52115_01011990
    APPS.FFP50506_01011900
    APPS.FFP53477_01012001
    APPS.FFP55375_01011990
    APPS.FFP50508_01011900
    APPS.FFP50512_01011900
    APPS.FFP52744_01071999
    APPS.FFP50510_01011900
    APPS.FFP52724_01071999
    APPS.FFP55355_01011990
    APPS.FFP55058_01011990
    APPS.FFP54406_01011995
    APPS.FFP54413_01011995
    APPS.FFP50577_01011900
    APPS.FFP51867_01011990
    APPS.FFP51411_01011999
    APPS.FFP51887_01011990
    APPS.FFP54398_01011995
    APPS.FFP50576_01011900
    APPS.FFP54411_01011995
    APPS.FFP54409_01011995
    APPS.FFP54520_01011995
    APPS.FFP52481_01010001
    APPS.FFP52683_01071999
    APPS.FFP50527_01011900
    APPS.FFP51843_01011990
    APPS.FFP54474_01011995
    APPS.FFP55062_01011990
    APPS.FFP55361_01011990
    APPS.CSC_ACTION_ASSEMBLER_PVT_W
    FLOWS_010500.ImportExport
    FLOWS_010500.ImportExport
    PUBLIC.WWV_FLOW_LIST_OF_VALUES_DATA
    PUBLIC.WWV_FLOW_LISTS_OF_VALUES$
    PUBLIC.WWV_FLOW_GENERIC
    PUBLIC.WWV_FLOW_FIELD_TEMPLATES
    RE.RE_PROFILER
    APPS.FFP58914_01010001
    APPS.FFP58915_01010001
    APPS.FFP58920_01010001
    APPS.FFP58919_01010001
    APPS.OKL_PROP_TAX_ADJ_PVT
    APPS.OKL_PROCESS_PPD_PVT
    APPS.OKL_STREAM_MIGRATION_PVT
    APPS.FFP53720_01011990
    APPS.FFP51846_01011990
    APPS.FFP51888_01011990
    APPS.FFP55078_01011990
    APPS.FFP59117_01011990
    APPS.FFP59110_01011990
    APPS.FFP59131_01011990
    APPS.FFP51844_01011990
    APPS.FFP56331_01011990
    APPS.FFP54827_01012000
    APPS.FFP55070_01011990
    APPS.FFP56324_01011990
    APPS.FFP50523_01011900
    APPS.FFP57220_01012000
    APPS.FFP55080_01011990
    APPS.FFP59112_01011990
    APPS.FFP50522_01011900
    APPS.FFP55330_01011998
    APPS.FFP51850_01011990
    APPS.FFP50928_01011997
    APPS.FFP56326_01011990
    APPS.FFP51838_01011990
    APPS.FFP56333_01011990
    APPS.FFP50583_01011900
    APPS.FFP56716_01012001
    APPS.FFP51906_01011990
    APPS.FFP54824_01012000
    APPS.FFP59175_01012004
    APPS.FFP55063_01011990
    APPS.FFP59273_01012004
    APPS.FFP57215_01011999
    APPS.FFP54518_01011995
    APPS.FFP54525_01011995
    APPS.FFP55367_01011990
    APPS.FFP55079_01011990
    APPS.FFP51068_01011997
    APPS.FFP59195_01011990
    APPS.FFP56739_01011999
    APPS.FFP59111_01011990
    APPS.FFP51849_01011990
    APPS.FFP56325_01011990
    APPS.FFP54909_01011990
    APPS.FFP55077_01011990
    APPS.FFP56332_01011990
    APPS.FFP54912_01011990
    APPS.FFP59116_01011990
    APPS.FFP59192_01011990
    APPS.FFP59200_01011990
    APPS.FFP59115_01011990
    APPS.FFP56053_01012000
    APPS.FFP59251_01012004
    APPS.FFP54394_01011995
    APPS.FFP56329_01011990
    APPS.FFP55331_01011998
    APPS.FFP56323_01011990
    APPS.FFP56330_01011990
    APPS.FFP56322_01011990
    APPS.FFP55359_01011990
    APPS.FFP58907_01010001
    APPS.FFP53224_01011999
    APPS.FFP1915_01010001
    APPS.FFP55373_01011990
    APPS.FFP55240_26121999
    APPS.FFP56596_01012001
    APPS.FFP57190_01012000
    APPS.FFP54407_01011995
    APPS.FFP56052_01012000
    APPS.FFP55328_01011998
    APPS.FFP54414_01011995
    APPS.FFP55356_01011990
    APPS.FFP54393_01011995
    APPS.FFP54449_01011995
    APPS.FFP56337_01011995
    APPS.FFP54524_01011995
    APPS.FFP1919_01010001
    APPS.FFP56434_01012001
    APPS.FFP58163_01011951
    APPS.FFP56056_01012000
    APPS.FFP54404_01011995
    APPS.FFP54523_01011995
    APPS.FFP58909_01010001
    APPS.FFP58908_01010001
    APPS.FFP1918_01010001
    APPS.FFP58906_01010001
    APPS.FFP58913_01010001
    APPS.FFP58912_01010001
    APPS.FFP54823_01012000
    APPS.FFP51841_01011990
    APPS.FFP50581_01011900
    APPS.FFP55306_01011995
    APPS.FFP50525_01011900
    APPS.FFP59191_01011990
    APPS.FFP59114_01011990
    APPS.FFP51966_01011998
    APPS.FFP56321_01011990
    APPS.FFP57217_01012000
    APPS.FFP56328_01011990
    APPS.FFP50524_01011900
    APPS.FFP57196_01012000
    APPS.FFP55362_01011990
    APPS.FFP59113_01011990
    APPS.FFP57216_01012000
    APPS.FFP59176_01012004
    APPS.FFP55243_26121999
    APPS.FFP56327_01011990
    APPS.FFP57126_01011995
    APPS.FFP55333_01011998
    APPS.FFP54403_01011995
    APPS.FFP55368_01011990
    APPS.FFP54522_01011995
    APPS.FFP54948_01011990
    APPS.FFP57125_01011995
    APPS.FFP54521_01011995
    APPS.FFP1916_01010001
    APPS.FFP1917_01010001
    APPS.FFP58911_01010001
    APPS.FFP58918_01010001
    APPS.FFP58910_01010001
    APPS.FFP60555_01010001
    APPS.FFP60587_01011990
    APPS.FFP60588_01011990
    APPS.FFP60589_01011990
    APPS.FFP60591_01011990
    APPS.FFP60592_01011990
    APPS.FFP60593_01011990
    APPS.FFP60606_01011990
    APPS.FFP60607_01011990
    APPS.FFP60793_01012004
    APPS.FFP60833_01012000
    HERMAN.RDT_1
    APPS.FFP60943_01011990
    APPS.FFP60944_01011990
    APPS.FFP60963_01012000
    APPS.FFP60964_01012000
    APPS.OKL_AM_BAL_WRITEOFF_PVT
    APPS.OKL_LA_SALES_TAX_PVT
    APPS.FFP61156_01010001
    APPS.FFP61138_01010001
    APPS.FFP61170_01010001
    APPS.FFP61152_01010001
    APPS.FFP61124_01010001
    APPS.FFP61277_01011951
    APPS.FFP61440_01011990
    APPS.FFP52982_01010001
    APPS.FFP61511_01012000
    APPS.FFP61532_01011990
    APPS.OKL_MULTIGAAP_ENGINE_PVT
    APPS.XLA_00707_AAD_C_000026_PKG
    APPS.XLA_20065_AAD_C_000030_PKG
    APPS.FSAH_DUPLICATE_PKG
    APPS.FFP61884_01010001
    APPS.FFP61924_01010001
    APPS.FFP61920_01010001
    APPS.FFP61867_01010001
    APPS.FFP61871_01010001
    APPS.FFP61926_01010001
    APPS.FFP61912_01010001
    APPS.FFP61897_01010001
    APPS.FFP61919_01010001
    APPS.XLA_00707_AAD_C_000044_PKG
    APPS.MSD_DEM_OBI_DEMANTRA_MV
    APPS.FFP62356_01012000
    APPS.FFP62357_01012000
    APPS.FFP62358_01012000
    APPS.FFP62359_01012000
    APPS.FFP62376_01012000
    APPS.FFP62377_01012000
    APPS.FFP62378_01012000
    APPS.FFP62379_01012000
    CA.F
    CA.GThe FFP packages are fastformula packages that were invalidated after running the HRGLOBAL driver and will compile normally with adadmin
    as for the remaining formulas they will not compile with adadmin for some reason, and you have to open each package and re-compile the packages it refferences even if they are valid.
    reffer to Oracle document [ID 1065445.1] ENGFDECN ECO Form When Try to Tab out of Field ECO Number, get FRM-40735: WHEN-VALIDATE_ITEM trigger raised unhandled exception ORA-04063
    despite that the solution in the doc id above talks only about ENGFDECN but it applies to all other packages. I've faced the same issue and now I have ZERO invalid packages, it will take sometime but it's worth a while.
    Regards,
    Mohammed B. Tammous

  • Resolved reference placed in object with no cache

    Hi ,
    I have been seeing this error in my weblogic logs.The workflows are
    running fine and doing intended work. Have a look at the error message
    WARNING: Resolved reference placed in object with no cache.
    java.lang.Exception: printStackTrace
            at com.waveset.util.Util.printStackTrace(Util.java:6259)
            at com.waveset.object.PersistentObject.cacheWarning(PersistentObject.java:476)
            at com.waveset.object.PersistentObject.checkReference(PersistentObject.java:2683)
            at com.waveset.object.PersistentObject.checkReferences(PersistentObject.java:2718)
            at com.waveset.object.PersistentObject.addMemberObjectGroup(PersistentObject.java:1513)
            at com.waveset.workflow.WorkflowEngine.buildWorkItem(WorkflowEngine.java:4406)
            at com.waveset.workflow.WorkflowEngine.callManualAction(WorkflowEngine.java:4284)
            at com.waveset.workflow.WorkflowEngine.callAction(WorkflowEngine.java:3811)
            at com.waveset.workflow.WorkflowEngine.callAction(WorkflowEngine.java:3229)
            at com.waveset.workflow.WorkflowEngine.execute(WorkflowEngine.java:3070)
            at com.waveset.workflow.WorkflowEngine.makeTransition(WorkflowEngine.java:2809)
            at com.waveset.workflow.WorkflowEngine.checkExplicitTransitions(WorkflowEngine.java:2700)
            at com.waveset.workflow.WorkflowEngine.checkTransitions(WorkflowEngine.java:2486)
            at com.waveset.workflow.WorkflowEngine.processSteps(WorkflowEngine.java:1891)
            at com.waveset.workflow.WorkflowEngine.walkCases(WorkflowEngine.java:1748)
            at com.waveset.workflow.WorkflowEngine.walkCases(WorkflowEngine.java:1656)
            at com.waveset.workflow.WorkflowEngine.execute(WorkflowEngine.java:816)
            at com.waveset.workflow.WorkflowEngine.execute(WorkflowEngine.java:478)
            at com.waveset.workflow.WorkflowExecutor.execute(WorkflowExecutor.java:235)
            at com.waveset.task.Scheduler.execute(Scheduler.java:2393)
            at com.waveset.task.Scheduler.executeTask(Scheduler.java:2295)
            at com.waveset.task.TaskManager.executeTask(TaskManager.java:277)
            at com.waveset.workflow.Workflow.checkinWorkItem(Workflow.java:378)Any Ideas,
    Thanks

    Did anybody resolve this issue?
    I am getting com.waveset.util.WavesetException:Class com.omd.session.WorkflowServices not found.
    It seems the workflow status shows finished, but did not start the acctual workflow process of approvals and emails to the appropriate user accounts.
    Anybody has any clues about this exception?
    G

  • Error message after executing KKRC- How to define Hierarchy ID ?

    Hi Gurus
    Ours’ is a Chemical Mfg./ Marketing Company. We have ECC 5.0 version implemented in our Company. We  have the Production process orders of different types ( Normal Process order , Reprocess Process order etc.). For the purpose of MIS it is our regular practice to download data in Worksheets & then work upon it ( pivot tables etc.)  &  compile the reports. We have the requirement to have SKU wise ( Finished Goodswise ) summarised compilation of  different type of Variances ( both Qty. , value of input materials, wherever applicable) .
    While browsing the SAP’s BPX community database I have come across the query similar to my requirement . refer thread Product costing - Information system, order summarization  
    Posted: Sep 30, 2007 3:21 AM
    As suggested in the response to that query  I have followed the steps .
    KKRV followed by KKRC . The error message after executing  KKRC reads
    “ No IDs defined for Hierarchy type CO
    Diagnosis No Hierarchy id is defined in customising for the hierarchy type you selected
    Procedure : go in to the customising and define the structure of hierarchy  by means of an appropriate Hierarchy ID. “
    Can some one give me further leads ( i.e. navigation/path and clues for  defining   Hierarchy ID)
    Or
    is there any other way to address the requirement mentioned in opening para.
    With best regards
    Sudheer

    Hi Patrick,
    unfortunately I cannot provide an ad-hoc solution for your nested exception without further investigations.
    Nevertheless I'm very interested to know, why you "gave up" using the Adaptive WS Model in Web Dynpro. What's the problem?
    Perhaps the coding which now requires to create a model instance:
    /** Hook method called to initialize controller. */
    //@@end
    public void wdDoInit() {
      //@@begin wdDoInit()
      // create a new model instance (1)
      EmailAdWSModel model = new EmailAdWSModel();
      // create model objects (2, 3)
      Request_SendEmail requestMO = new Request_SendEmail(model);
      SendEmail emailMO = new SendEmail(model);
      // associate model objects (4)
      requestMO.setSendEmail(emailMO);
      // bind executable model object to context node (5)
      wdContext.nodeRequest_SendEmail().bind(requestMO);
      //@@end
    Regards, Bertram

Maybe you are looking for

  • 2007 intel based iMac has the white screen of death with the mouse visible?? WHATSUP

    My 2007 Intel based IMAC has the white screen of death with the mouse cursor as the only visible item.  What is up with this?  Is this the equivalent of the windows blue screen of death? Doug

  • How can i find the spool request number in script

    Hi Experts, I need solution that how can i see the spool request number, bcoz i need to covert my script into pdf format. Thanks and Regards. Venkat N

  • Personal email address still visable in search results

    I recently requested that my old user profile be deleted because my user name contained my personal email address. This was done, my old posts now appear as if a guest has written then, however a simple google search for my name displays the page whi

  • CF 4.5 and MS SQL 2005

    Any quick and easy points or guidance to getting these two to play together? We are in the unenviable position of having to get some maintenance, enhancement code installed on the venerable 4.5 ColdFusion server that will interact with the new MS SQL

  • PHILIPS CDD5301 = not so good, new firmware?

    Hi, I have a PHILIPS CDD5301 in my MDD, along with my Pioneer 106D. The Pioneer drive is flawless in operations, the Philips is another story, it seems slow reading DVDs, and in overall performance looks much worst ..seems also to "hang" more ofte, t