Bug using map field?

I have a table AMOUNTS that contains a foreign key into another table
LOAN. The primary key column name in LOAN is LOAN_SK and the foreign key
column to this in the AMOUNTS table is called LOAN_FK. In my .jdo file for
my LOAN class I have this:
<field name="amount">
<extension vendor-name="kodo" key="table" value="AMOUNTS"/>
<extension vendor-name="kodo" key="data-column"
value="AMOUNT"/>
<extension vendor-name="kodo" key="ref-column"
value="LOAN_FK"/>
</field>
When I try to add a new loan object (with an amount field) I get a SQL
error indicating that Kodo is trying to use LOAN_SK as a column name in
AMOUNTS table, not LOAN_FK:
java.sql.SQLException: Column not found: S0022 Column not found: LOAN_SK
in statement [SELECT t0.LOAN_SK, t0.ACTUAL_INTEREST_RATE, t2.AMOUNT,
t0.NOTE_SIGN_DATE, t0.LOAN_PERIOD_BGNG_DATE, t0.LOAN_PERIOD_ENDG_DATE,
t0.SCHOOL_CERTIFICATION_DATE, t0.SCHOOL_USE_ONLY FROM AMOUNTS t2, LOAN t0,
LOAN_PERSON t1 WHERE (t1.PERSON_FK = 1050 AND t0.LOAN_SK = t2.LOAN_SK)]
Am I doing something wrong?
Thanks!

Thanks for the reply, Abe - sorry for my terminology issues! It's really a
1:1 field (I think!), although it's organized funny I know. The AMOUNTS
table holds generic amount data and is tied to a LOAN by the LOAN_FK
foreign key. However LOAN has no reference to AMOUNTS, only an AMOUNTS row
to a LOAN. So when I query a LOAN I get it's amount from the AMOUNTS
table. The SQL I see from KODO looks like what I want/indtended except for
the t0.LOAN_SK = t2.LOAN_SK, which I want to be t0.LOAN_SK = t2.LOAN_FK:
[SELECT t0.LOAN_SK, t0.ACTUAL_INTEREST_RATE, t2.AMOUNT, t0.NOTE_SIGN_DATE,
t0.LOAN_PERIOD_BGNG_DATE, t0.LOAN_PERIOD_ENDG_DATE,
t0.SCHOOL_CERTIFICATION_DATE, t0.SCHOOL_USE_ONLY FROM AMOUNTS t2, LOAN t0,
LOAN_PERSON t1 WHERE (t1.PERSON_FK = 1050 AND t0.LOAN_SK = t2.LOAN_SK)]
I hope that clarifies my problem and intentions, thanks Abe!
Kent
Abe White wrote:
<field name="amount">
<extension vendor-name="kodo" key="table" value="AMOUNTS"/>
<extension vendor-name="kodo" key="data-column"
value="AMOUNT"/>
<extension vendor-name="kodo" key="ref-column"
value="LOAN_FK"/>
</field>
Or is this a 1-M field? In that case you'd need a <collection> element...
Sorry, I can't tell you exactly how to fix this, cause I don't know enough
about your data model and object model.

Similar Messages

  • Related Content Field Mapping using "Page Field" mapping type

    In PeopleBooks it refers to a Page Field mapping type whene mapping fields from the component to it's related content.
    Is this a misprint in PeopleBooks, did this feature not make it into 8.50.09 or is this option only available under certain circumstances.
    I'm trying to pass a non key field from level 0 to the rel content url.
    Thanks to anyone who can shed some light on this.
    Graham

    Hi Jim
    Thanks for the reply.
    It appears that you can't select the "Page Field" mapping type unless you have the related content specified by PAGE ratehr than component.
    PBOOKS states Page Field: use when you want to map the service parameter to any level 0 page field.
    In the component buffer fields in level 0 could be any page. I was hoping to pass ANY level 0 field through to the Rel Content URL for any page in this component.
    Kind regards
    Graham

  • Using "Update All Mapped Fields" with multi-value attributes

    Is it possible to update a value in a multi-value attribute through the import manager?  It appears that if a source value is different then it just gets added as another value to the record.
    For example, a product has an attribute of speed which is measured in revolutions/minute. Some products can be rated at two speeds (i.e. 1800/3600).
    I created a numeric attribute for speed and enable only nominal rating and selected multi-valued.
    In import manager, I set "/" as multi delimiter for source field.  This created two entries in destination attribute, 1800 and 3600. 
    However, if on subsequent imports the speed values changes for this record (i.e. 1200 and 1800) then I will now have 1200, 1800, and 3600 as values for this record.
    Would the proper solution be to create two individual numeric attributes that are single valued (i.e. Speed1 and Speed2)?

    Hi Aaron,
    in your example it would make sense to use two different attributes called "Speed1" and "Speed2". Using the multi value option, MDM allows you to store a list of values into a single field. This list is more or less unlimited, you can add as many values as you like. A change of an existing value is not possible. The reason is that Import Manager does not know, which value you've changed! So it simply adds the "new" record (which is the 1200 in your example) to your value list. This is the intended behaviour of the "update all mapped fields option". If you really want to replace the values, you can check if the "Replace" option is useable for you. But note, that the replace will replace the complete existing record with the incoming new one. This means if the product you want to import with the replace option is smaller than the existing one (maybe it does not contain values for all segments), you'll loose data in MDM.
    BR Michael

  • Update (All Mapped Fields) Import Action creates a new record.....

    Hi All,
    I am on MDM 5.5 sp6,and this weird thing happens everytime i run the "update all mapped fields" option in the import manager,it creates a new duplicate field with the updated value record.Is this  a bug in sp6 or I guess i am going wrong somewhere.I want to update a particular field in the qualified table and i am using a import file which has values for qualified field on the main table and the values for the qualified table itself.
    Any Help greatly appreciated
    Thanks

    Hi Aravind,
    I am on MDM 5.5 sp6,and this weird thing happens everytime i run the "update all mapped fields" option in the import manager,it creates a new duplicate field with the updated value record.Is this a bug in sp6 or I guess i am going wrong somewhere.I want to update a particular field in the qualified table and i am using a import file which has values for qualified field on the main table and the values for the qualified table itself.
    MDM should not behave in this way. I thing there is an issue with the Matching Field you have choosen.
    I think you have choosen all the FIeld as the Matching Field ( Tab) while IMporting.
    Hence any change in any value, creates another dupliacte record( which we do not want)
    Please select any Field with unique values ( like the Material ID, Customer ID etc) which will ensure that the particular records are updated with the new Values coming in.
    You will find the new value getting updated for the records which are already present. It will not create a duplicate record
    Hope it helps.
    *Please reward points if helpful
    Thanks and Regards
    Nitin Jain

  • OneToManyMapping using 2 fields to join

    I have a Note object that can be joined with several different tables. I've accomplished this by using 2 fields in my relationships. For example, lets say Notes can be attached to Users and Documents.
    Notes
    ID
    NOTETEXT
    OBJCODE - determines the type of object it is linked to
    OBJID - FK to one of several tables
    Users
    ID
    OBJCODE - always "USER"
    Documents
    ID
    OBJCODE - always "DOCU"
    A Note with OBJCODE="USER" and OBJID="2" links with User(ID=2). OBJCODE="DOCU" and OBJID="1002" links with Document(ID=1002)...
    My OneToManyMappings are set up in User as follows:
    setAttributeName("_notes");
    setReferenceClass(Note.class);
    useCollectionClass(ArrayList.class);
    setUsesIndirection(true);
    setTargetForeignKeyFieldNames( new String[]{"T_NOTES.OBJID", "T_NOTES.OBJCODE"}, new String[]{"T_USERS.ID", "T_USERS.OBJCODE"});
    This works great. However, I don't want to map the OBJCODE field in User. That is I don't want a separate DirectToFieldMapping for that field in the User Descriptor. The value is defaulted by the DB, my object returns the same value, and it's just a waste.
    However, if I don't have this DirectFieldMapping in User for OBJCODE, TopLink gives me an error trying to load Notes.
    If I call user.getNotes();// this causes the ValueHolder to trigger a query for related Notes
    The error is:
    Exception [TOPLINK-6094] (OracleAS TopLink - 10g (10.0.3) Developer Preview (Build 040222)): oracle.
    toplink.exceptions.QueryException
    Exception Description: The parameter name [OBJCODE] in the query's selection criteria does not match
    any parameter name defined in the query.
    Query: ReadAllQuery(test.project.Note)
    at oracle.toplink.exceptions.QueryException.parameterNameMismatch(QueryException.java:686)
    at oracle.toplink.internal.expressions.ParameterExpression.getValue(ParameterExpression.java
    :158)
    at oracle.toplink.internal.databaseaccess.DatasourceCall.translateQueryString(DatasourceCall
    .java:541)
    at oracle.toplink.internal.databaseaccess.DatabaseCall.translate(DatabaseCall.java:852)
    at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(Datasourc
    eCallQueryMechanism.java:128)
    at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(Datasourc
    eCallQueryMechanism.java:110)
    at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeSelectCall(Dat
    asourceCallQueryMechanism.java:190)
    at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.selectAllRows(Datasou
    rceCallQueryMechanism.java:503)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRowsFromTable(Ex
    pressionQueryMechanism.java:776)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRows(ExpressionQ
    ueryMechanism.java:751)
    at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:447)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:518)
    at oracle.toplink.queryframework.ReadQuery.execute(ReadQuery.java:108)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2088)
    at oracle.toplink.threetier.ServerSession.internalExecuteQuery(ServerSession.java:620)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1101)
    at oracle.toplink.internal.indirection.QueryBasedValueHolder.instantiate(QueryBasedValueHold
    er.java:57)
    at oracle.toplink.internal.indirection.DatabaseValueHolder.getValue(DatabaseValueHolder.java
    :63)
    at oracle.toplink.internal.indirection.UnitOfWorkQueryValueHolder.getValueFromWrappedValueHo
    lder(UnitOfWorkQueryValueHolder.java:60)
    at oracle.toplink.internal.indirection.UnitOfWorkValueHolder.instantiate(UnitOfWorkValueHold
    er.java:149)
    at oracle.toplink.internal.indirection.DatabaseValueHolder.getValue(DatabaseValueHolder.java
    :63)
    If I put the DirectToFieldMapping for OBJCODE back in User, then it works fine.
    My question is, why does my DirectToFieldMapping effect the definition of my OneToManyMapping? I really don't want to have to query for this, as I mentioned it's just a waste.
    Are there any workarounds?
    Nate

    Thanks for the feedback.
    Yes, I was referring to the Batch Reading issue. It is the big reason we can't plug 10.1.3 into our dev code (of course haven't tested JTS support and JMS cache synch with 10.1.3 either).
    My idea here was that perhaps by using setSelectionCriteria(), I could work around this issue by replacing my mapping with a more or less equal solution.
    Granted the M-M relationship is a good solution as it enables you to take advantage of FK relationships. However, I have 1 major problem with designing it this way: I have a common use case of querying "Notes" and displaying properties of its "referencedObject" (User, Document, etc.) which all implement a "NotesAttachable" interface. VariableOneToOneMapping works perfectly for this.
    The other thing I like about using SelectionCriteria is that I don't have to have a mapping for the "OBJCODE" field which essentially the same value for every row. The only reason I have mapped that field now is so that the 1-M mapping works.
    My goal was to kill 2 birds with 1 stone: gain a workaround for a bug in 10.1.3, eliminate the need for a redundant mapping.
    It sounds like this may be an option to explore.
    Thanks,
    Nate

  • Bug after adding fields in advanced search mode of af:query

    We are migrating from JDeveloper 11.1.1.6 to 11.1.1.7.
    I noticed the following issue:
    In a page with search criteria (based on a view object), when the user adds an additional field in advanced search mode and clicks on a full submit button in the page, the following browser popup appears:
    "This page is asking you to confirm that you want to leave - data you have entered may not be saved."
    This was logged as a bug in Oracle Support but we have not been able to find a workaround yet.
    This is the only issue currently blocking us from migrating to 11.1.1.7. Has anyone else faced this issue? Any ideas on how we can bypass this behavior?
    Thank you,
    Gabriel.

    Unfortunately, the latest update from Oracle Support was that they no longer consider this a bug!
    SR 3-7706485141: Additional Fields in af:query problem - JDeveloper 11.1.1.7
    Bug 17346704 - ADDING FIELD TO AF:QUERY ADVANCED SEARCH CAUSES SPURIOUS WARNING DIALOG POPUP
    1. I cannot understand how something that blocks user actions and cannot be bypassed in any way could be considered "acceptable behavior".
    2. I also do not understand how a Bug can be lodged and then have its status changed to "Not a Bug".
    3. Even if we were to ignore this issue and convince our customers that they should be delayed by meaningless popups while working (which we cannot), their is still another issue that makes this functionality dysfunctional. When the user clicks on "Stay on Page" the popup closes and the page freezes and becomes unresponsive.
    Off course this is another issue and a different SR should open, but I think it shows that something is going very wrong with this functionality.
    I wonder if anyone else is considering using JDeveloper 11.1.1.7.0 in a production system.

  • How i use header fields in soap adapter

    Hi Experts,
    I need use  header fields http  in soap adapter receiver but i don't know where's the Variable Header
    Do you know where i find this?
    Somebody know how i put header fields http in soap adapter receiver?
    Thanks for all,

    It is similar like in this blog:
    /people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping
    Find in the online help the values for the SOAP adapter.
    You can only add additional fields, you cannot influence the standard field like content-type and content-id.
    Regards
    Stefan

  • Creating context-sensitive HTML Help without using Map #s

    I am uisng RH 8 and am producing a compiled HTML Help file.
    I am wondering if there is another way to call a topic from our application without using the MAP numbers in RH.
    The developer would like to use the MAP ID (string) instead.
    Is there a way to do this?
    Please let me know.
    Thanks.

    Your points are valid but there are also situations when urls are an excellent method.
    For some projects our developers name fields and we have a method of identifying the name applied. We use that as our filename. By that means they know what the help file will be and can create the call before the topic exists and we don't have to maintain map ids for those projects. If we should fail to create the topic, the call has the logic to go to a higher level.
    I wouldn't advise using map ids or urls, I would say understand how both work, their pros and cons, and then decide what works for the project.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Message Mapping Field Name

    Hi!  I am trying to get the Field name of the XML element, when I am defining my own function.  Can someone please provide me some help!  Example:
    In the Graphical Editor, let's just say we drop the following fields:
    Source                                     Target
    City                 to                    City
    How can I grab the XML field name "City"?
    Thanks,
    Rob

    Hi Robert,
    In the Message Mapping, there is a button named 'Text Preview', just below the Tab names 'Design - Test - Messages'. If you click that, it displays the complete mapping in a text area. It conatins full paths of all mapped fields, similar to the XPath, which you can use in your function.
    If this helps you, please remember to award the points and close the post.
    Good luck,
    Bhanu

  • OCI Mapping field/table

    Hi Gurus,
    This is regarding an issue that I am facing with some materials in punchout catalog used with SRM5.0
    For some particular items, I get an error "Incomplete items in catalog, only complete items were transferred" on transferring the data from catalog to shopping cart. I checked the slg1 log and found that the error message shows "00001 E BBPWS Unit of measure D97 is not an ISO code. Item will not be transferred D97".
    For this item, the catalog shows the unit of measure as Pallets. In the CUNI transaction, the SRM system has D97 and PF having the same descirption 'Pallet'. In the 'Unit of measure' tab, the Pallet unit is maintained as 'PAL' with ISO code as 'PF'. But, I am unable to understand how the D97 UoM is picked by the SRM system while transferring data from the catalog.
    Can someone tell me where to look for the mapping fields? I mean where is the data mapping between catalogs and SC saved?
    I referred SAP note 395312 which says that  "check the mapping of the catalog attributes on the OCI fields in the SAP CartEditor (Logon to the ECManager: Administration --> Configuration -> Shopping Cart)." Can someone guide me as to where to look for this link? What does ECManager logon mean? I am unable to find this link in the web login of SRM. Please help me to find a solution to this.
    Thanks n Regards,
    Ancy

    Hi Masa,
    Thanks for the inputs. I checked the slg1 log for catalog interface log and it helped us reach into the program saplbbp_ws_api.
    My ABAP consultant tells me that this program is in-turn calling some function modules to read the data. But, he can only conclude that D97 is coming from function module BBP_WS_MAP_OCI_TO_SC and the comment on this call is 'Map from OCI or XML to the SC structure'.
    But, then again I am back to my original question: How do I see the mapping rules from OCI?
    Thanks n Regards,
    Ancy

  • Using CMR field as Primary Key in Entity Bean

    Hi, all!
    Can somebody tell me, is it possible to use CMR field as Primary Key field in Entity Bean?
    Thanks

    WebLogic Server supports mapping a cmr field to the primary key.

  • Map Fields, store procedure results is "Expr1000"

    Hi guys.
    This is my problem.
    I have a sql server 2005 database. In this database i have a store procedure (3100 lines, with temporal tables, unions .. etc).
    When i try to create the report in CR9, i do this :
    1) i'm go to "set datasource location"
    2) select the database
    3) select the store procedure
    4) put some parameters
    5) Accept
    When i want to add the fields to the report ....
    the only results from the SP is a result field called "Expr1000".
    I execute the store in my sql server and this give me all the columns results (174 columns).
    My question is:
    What is the error , that in CR9 i can't see all the columns results , and only i can see "Expr1000".
    Thanks !!!!!
    Pablo Reynoso.

    This is definitely not the solution for everyone but reading this thread made me do a little more checking on my own.
    I too was receiving the "Expr1000" field from the SP when linking it into a new report or even when trying to MAP fields in an existing report template.  In the Map Fields dialog the source SP had no fields displayed for Mapping.
    What I discovered was S.U.E. (stupid user error).  While testing some changes to the source SP I changed the return result from returning data to returning the actual sql code I was constructing in the SP.  I often write the code into a local string variable and then use the 'exec(@str);' command as the final step of the SP.  I changed that code to 'Select @str;' which returned the @str string value when I executed the SP from within SQL Manager - to see the actual sql code.
    I never changed the code back to using the 'exec(@str);' so I was returning a 4,000+ char string from the SP which when loaded into Crystal the SP "field" became "Expr1000".
    After making this little change, returning the data instead of a single LARGE string the report behavior returned to what is was before the testing snafu.
    Hope this helps someone else, at least maybe point them to their code changes and not necessarily the CR template.
    Dave

  • Custom mapped field attach problem

    Hi!
    I have a field, for which I've written custom field mapping. Everything
    seems to run fine, but when I try to attach previously detached instance I
    got:
    kodo.util.FatalInternalException: kodo.util.FatalInternal
    Exception: Cannot attach field "SomeObject.someField" of type "10".
    Mapping's getJDBCType() returns Type.OTHER. Field contains java object, but
    corresponding database table column is numeric type. No matter what I set
    JDBCType to I fail to attach object. When I set type to Type.JAVA_OBJECT I
    get exception (when Kodo is reading database tables on startup) that says
    that column type DECIMAL isn't compatibile with the type I set in my custom
    mapping. When I set it to Type.DECIMAL I got the same error I got with
    Types.OTHER ("Cannot attach..").
    How should custom mapped fields be attached? I want Kodo to attach and
    update object modified on the client side - as for the type (used as I
    presume when Kodo is crafting database statement) I want the type declared
    in mapping to be used (even it seems to be incompatibile with database
    schema, my JDBC driver will take care of it converting it on-the-fly). I've
    been looking for some clues in docs, but no success so far. Any hints?
    Regards,
    Pawel

    Uzytkownik "Marc Prud'hommeaux" <[email protected]> napisal w wiadomosci
    news:[email protected]...
    Pawel-
    Can you post the complete stack trace of the error you are getting?Sure, here's what I receive on the client side. Theres nothing in server
    side logs.
    [java] java.rmi.RemoteException: EJB Exception:; nested exception is:
    [java] java.rmi.RemoteException: setByValue(); nested exception is:
    [java] kodo.util.FatalInternalException:
    kodo.util.FatalInternalException: Cannot attach fi
    eld "edu.mypackage.SomeObject.someField" of type "10".
    [java] at
    weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108
    [java] at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :284)
    [java] at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :244)
    [java] at
    edu.mypackage.impl.JVTSessionExtProxy_f0ahbq_EOImpl_811_WL
    Stub.setByValue(Unknown Source)
    [java] at edu.mypackage.test.JVTSessionTestProxy.setByValue(J
    VTSessionTestProxy.java:112)
    [java] at
    edu.mypackage.test.JUnitTestClientGis3.testGeometryUpdate2(JUnitTestClient
    Gis3.java:99)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    [java] at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    [java] at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    ..java
    :25)
    [java] at java.lang.reflect.Method.invoke(Method.java:324)
    [java] at junit.framework.TestCase.runTest(TestCase.java:166)
    [java] at junit.framework.TestCase.runBare(TestCase.java:140)
    [java] at junit.framework.TestResult$1.protect(TestResult.java:106)
    [java] at
    junit.framework.TestResult.runProtected(TestResult.java:124)
    [java] at junit.framework.TestResult.run(TestResult.java:109)
    [java] at junit.framework.TestCase.run(TestCase.java:131)
    [java] at
    edu.mypackage.test.JUnitBaseTestClient.run(JUnitBaseTestClient.j
    ava:118)
    [java] at junit.framework.TestSuite.runTest(TestSuite.java:173)
    [java] at junit.framework.TestSuite.run(TestSuite.java:168)
    [java] at
    edu.mypackage.test.ResultTestSuite.run(ResultTestSuite.java:21)
    [java] at junit.textui.TestRunner.doRun(TestRunner.java:74)
    [java] at junit.textui.TestRunner.start(TestRunner.java:234)
    [java] at junit.textui.TestRunner.main(TestRunner.java:112)
    [java] Caused by: java.rmi.RemoteException: setByValue(); nested
    exception is:
    [java] kodo.util.FatalInternalException:
    kodo.util.FatalInternalException: Cannot attach fi
    eld "edu.mypackage.SomeObject.someField" of type "10".
    [java] at edu.mypackage.impl.JVTSessionExtImpl.setByValue(JVT
    SessionExtImpl.java:579)
    [java] at
    edu.mypackage.impl.JVTSessionExtProxy_f0ahbq_EOImpl.setMan
    agedEntityByValue(JVTSessionExtProxy_f0ahbq_EOImpl.java:102)
    [java] at
    edu.mypackage.impl.JVTSessionExtProxy_f0ahbq_EOImpl_WLSkel
    ..invoke(Unknown Source)
    [java] at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:466)
    [java] at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :108)
    [java] at
    weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:409)
    [java] at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.jav
    a:353)
    [java] at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    [java] at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:404)
    [java] at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:3
    0)
    [java] at
    weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    [java] at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    [java] Caused by: kodo.util.FatalInternalException:
    kodo.util.FatalInternalException: Cannot at
    tach field "edu.mypackage.SomeObject.someField" of type "10".
    [java] at
    kodo.util.FatalInternalException.writeReplace(FatalInternalException.java:54
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    [java] at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    [java] at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    ..java
    :25)
    [java] at java.lang.reflect.Method.invoke(Method.java:324)
    [java] at
    java.io.ObjectStreamClass.invokeWriteReplace(ObjectStreamClass.java:882)
    [java] at
    java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1011)
    [java] at
    java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1330)
    [java] at
    java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1302)
    [java] at
    java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1245)
    [java] at
    java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
    [java] at
    java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1330)
    [java] at
    java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1302)
    [java] at
    java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1245)
    [java] at
    java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
    [java] at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
    [java] .F
    [java] at
    weblogic.common.internal.ChunkedObjectOutputStream.writeObject(ChunkedObject
    Outpu
    tStream.java:114)
    [java] at
    weblogic.rjvm.MsgAbbrevOutputStream.sendThrowable(MsgAbbrevOutputStream.java
    :367)
    Regards,
    Pawel Swierszcz

  • BB Desktop Manger v5 with 9500 unable to sync Calendar with categories map fields

    BB Desktop Manger v5 with BB Storm 9500
    Two laptops one with XP sp3 with office/outlook 2003 and the other vista 64bit with office/outlook 2007
    The sync of both the Address book and Tasks are great as I can use the catergories "map field" in both of these options.
    The device and the application "outlook 2007/2003" both have the catergories field.
    The problem is I am unable to sync The Calendar with categories map fields.
    The device side of the map field does'nt have the catergories option  but the application side "outlook 2007/2003" does.
    From the main menu on the BB Desktop manager / Synchronization / Synchronization tab / Advanced Tab / Calendar / Map Fields Tab
    The left side of the screen is the Device listing and the right side is Microsoft outlook. 
    Is their a way I can add this field to the map fields option for the device?
    Thanks

    Hi damlandberg,
    Welcome to the BlackBerry Support Community.
    This KB article should provide more information on the synchronization error you are receiving as well as a workaround to enable your synchronization. ""The organizer module could not load and will be turned off" when configuring synchronization in BlackBerry Desktop Software 7.1" http://bbry.lv/SdDLCO
    Hope this helps.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Ejb relationships using cmp field

    I have defined a cmp relationship using cmr field. Als defined getter/setter for that field.
    When I call the getter method container returns all the records for relation.
    getter/setter is implemented by container.
    My question is can we define in which order relationships record should be retrieved. I mean can we specify Order By caluse for that.

    if you want to do this you just have to use Map on collection side of your relationship like this:
    @OneToMany(cascade={CascadeType.ALL})
        @JoinColumn(name="CUSTOMER_ID")
    @MapKey(name="number")
    @OrderBy
    ("number ASC")
        public Map<String, Phone> getPhoneNumbers

Maybe you are looking for

  • Insert html

    I am creating a mobile application in indesign and then using DPS...wondering how i can insert the following html...they are learning activities that we created using a seperate application (Hot Potatoes)...i have succesfully integrated them into app

  • Sequence of items in 'to do' list now abritary after adding a new calender

    Hi I doubt there is a fix for this but I would like to understand the problem. I added a new calender (on the left, in a new color) and my to do list is now scrambled. The sequence of items was important, they were grouped, and now they seem to be in

  • Can"t get the illustration !

    Hi ! I put illustrations (CD) on my iPod's songs by iTunes, but when my iPod updates, it can't do it properly, and this message appears : "Your iPod could not be updated. An unknown error occured(-50)". What is the problem ? What can I do ? By the wa

  • af:convertNumber not working

    I my data table i have: <af:column sortable="false" headerText="COSTO UNITARIO" id="c11" align="right" width="60"> <af:outputText value="#{row.COSTO_UNIDAD}" id="ot4"> <af:convertNumber groupingUsed="false" pattern="#,###.##" minFractionDigits="2" ma

  • Adding ColumnSeries in ActionScript

    I'm lookng for a way to add ColumnSeries to a ColumnChart thru actionscript. The ColumnChart is in mxml, dataprovider is an ArrayCollection of two objects, each with three items: a name, and two sets of number data. The type of the chart is overlaid