Functions cause mappings to crash or not insert/update

LS,
I am encountering some weird problems.
I've built a mapping with 2 tables as source, and in the end a table to insert stuff into and a monitor table which gets an update. This mapping never results in inserts or updates. If I check the Intermediate Results using TOAD, all queries deliver exactly what I expect to see. However, when I build the INSERT around it, things start to go wrong.
In one scenario I am using a SELECT which returns 1 row, then build INSERT around it and says "0 rows inserted".
In a similar scenario the SELECT returns 1 row, and the INSERT around it results in "invalid number"(ORA1722).
Detailed description
What I use in this mapping is a transformation, a function in this case, which without parameters returns the ID of a file which needs to be processed (which is the PK in one source table and part of the PK in the other).
Since I use a splitter you see this function being called 2 or 3 times.
When I replace all occurrences of this function by the value it actually returns, the INSERT succeeds!!!
If I replace one with its original (the function) I get the "0 rows inserted".
When two or more occurrences of the function-call exist in the INSERT-SELECT I get "ORA-01722 invalid number".
If I do an INSERT from DUAL with all fixed values into this target table there is - of course - no problem.
If I use these same fixed values in combination with the FROM and WHERE of the original SELECT, it also 'crashes'.
Any suggestions?

Good morning Jean-Pierre,
No datatype conversion happening, and also the exact content was/is OK to convert (worked in SQL*Plus). Unfortunately, I cannot reproduce the problem anymore since it - all of a sudden - worked again friday... WITHOUT ANY CHANGES TO CODE THAT IS.
So there you go, inconsistent behaviour... even though it is working now, it still gives me a sort of bad taste in the mouth, since you never know whether it'll happen again :-(
So far so good, I'll keep you posted when it happens again.
Cheers, Patrick

Similar Messages

  • Can not insert/update data from table which is created from view

    Hi all
    I'm using Oracle database 11g
    I've created table from view as the following command:
    Create table table_new as select * from View_Old
    I can insert/update data into table_new by command line.
    But I can not Insert/update data of table_new by SI Oject Browser tool or Oracle SQL Developer tool .(read only)
    Anybody tell me, what's happend? cause?
    Thankyou
    thiensu
    Edited by: user8248216 on May 5, 2011 8:54 PM
    Edited by: user8248216 on May 5, 2011 8:55 PM

    I can insert/update data into table_new by command line.
    But I can not Insert/update data of table_new by SI Oject Browser tool or Oracle SQL Developer tool .(read only)so what is wrong with the GUI tools & why posting to DATABASE forum when that works OK?

  • Access is not inserting, updating or deleting records in my database table on the server

    I am having a problem with an application I developed using Dreamweaver 8 and Access 2000 several years ago which is no longer working correctly. The problem is that Access is not inserting, updating or deleting records in my database table on the server but is reflected in changes to my Web site. I used the Dreamweaver server behaviors: insert record, update record and delete record to make the changes to my Access table on the server. My Access table on the server shows all of the records I inserted or updated in the past, but not any of the newly inserted on updated records.
    does any one have any ideas as to what my problem is?
    Jim

    No, that has nothing to do with your problem. Let's make sure I understand the symptoms.
    1) Your site is online at a remote host.
    2) You use a dynamic page in your online site to update a database record (insert, delete, or update)
    3) The update then appears correctly on your dynamic content page.
    4) You download the mdb and it appears to not have any of the upates you just made.
    Please correct any of these statements if they are wrong.
    If the above is correct, then you must be looking at a cached mdb, or the mdb you are looking at is in the wrong location. Do this: search your entire drive for copies of the mdb, including in the Windows temp directories which is likely where the cached copy is located. Delete any extra copies and download again.

  • Try uninstalling the 3ivx!!!!! caused library to crash,videos not to play

    whoever posted this idea, don't know where I even saw it now, thank you big time!!!
    This caused everything to crash repeatedly!
    Uninstalling 3ivx allowed by managed library on the external drive to finally load without crashing, to play videos recognizing format like it used to...finally I see a light at the end of the tunnel!!!

    I only realized it because in system preference window I had perian and flip4mac and "3ivx mpeg-4" listed.  I also had an icon somewhere for "uninstall 3ivx".  
    My library was a managed library on an external drive, I understand all the network referenced guys are hating life.  My videos were visible but the thumbnails were randomly pixelated, aperture crashed continuously and videos would show up with just blank white screens.
    I was able to open the library with snow leopard and it ran fine so it is a lion issue with some glitch of video format problems.  I spent hours and a trip to the genius bar who told me to wait for software update.  I uninstalled 3ivx and presto!
    I would spotlight "3ivx" and see what other codecs or video programs or converters you may have.  Also, there is a documented apple problem of issues with final cut express causing aperture to quit or crash.  Doesn't sound like your issue but thought I'd throw it out there in case. 
    I don't have much experience with referenced network libraries, which from the sound of it, I am glad!
    let me know if you find anything interesting!

  • Help!!urgent!!can not insert/update clob:the row containing the lob is not locked

    Hi,
    could you do me help?
    i can not insert a string into a oracle clob field, it echo as:
    ORA22920 row containing the lob value is not locked. ORA 06512 at "SYS.DBMS_LOB" line 708
    ORA 06512 at line 1;
    what its means? please.
    my table defined as : create table clob1(id number(5),mclob clob default empty_clob()); the id is create by a sequece of test_sequence automaticly.
    my code as belows:
    import java.io.*;
    import java.sql.*;
    //import oracle.sql.*;
    public class test4 {
    public static void main(String args[]) {
    String url_String
    = "jdbc:oracle:thin:test/test@myhost:1521:myorcl";
    try {
    Class.forName
    ("oracle.jdbc.driver.OracleDriver");
    java.sql.Connection con =
    java.sql.DriverManager.getConnection(url_String);
    con.setAutoCommit(true);
    Statement stmt
    =con.createStatement();
    String sqlStr ="insert into
    clob1 (mclob) " + "values(empty_clob())";
    stmt.executeUpdate(sqlStr);
    String query = "select
    test_seq.CURRVAL from dual";
    ResultSet rs =stmt.executeQuery
    (query);
    rs.next();
    int currval =rs.getInt(1);
    query = "select * from clob1 where
    id="+currval;
    String str
    ="abcedefhijklmnopqrstuvwxyz";
    rs =stmt.executeQuery(query);
    rs.next();
    java.sql.Clob clob1
    =rs.getClob(2);
    oracle.sql.CLOB clob=
    (oracle.sql.CLOB)clob1;
    System.out.print(clob);
    java.io.Writer
    wr=clob.getCharacterOutputStream();
    wr.write(str);
    wr.flush();
    wr.close();
    stmt.close();
    con.close();
    } catch(Exception ex) {
    System.err.println("SQLException: "
    + ex.getMessage());
    null

    Hi,
    To avoid ORA-22920 error while selecting lob column, use the 'for update' clause in the select statement like :
    query = "select * from clob1 where id="+currval+" FOR UPDATE" ;
    This should solve the problem. However, after fixing this, you might get the error :
    java.sql.SQLException: ORA-1002: fetch out of sequence
    I got this error when testing your code. To avoid this error, before executing 'select ... for update' statement Set AutoCommit to OFF, like :
    query = "select * from clob1 where id="+currval+" FOR UPDATE" ;
    con.setAutoCommit(false);
    rs =stmt.executeQuery(query);
    Hope that Helps,
    Srinivas

  • Function Module where-used list does not find update rule programs

    We have function modules called in update rules. The where-used list in the function builder does not find the update rule programs.
    For example, function DATE_GET_WEEK is called in an update rule to InfoCube YCUBE001. The activated program name for this update rule is GP3PWI6PKM5Y3K75A370DIS8I77. When I goto SE37, enter the function DATE_GET_WEEK, click the where-used button, check the programs option and search. The system does not find the program GP3PWI6PKM5Y3K75A370DIS8I77.
    Without this search capability it is difficult to do an impact analysis of changing function modules. Does anyone know of a solution?

    hi,
    i think the reason is the code of update rules' generated program are stored line by line in table(rsaabap), update rules program itself stored in table rsupdrout, link with field codeid, another useful table is rsupdinfo which store infocube, infosource related.  other info may stored in some other rs* and rsa* tables.
    try to create following program in your system, and run, type in the function module name, and will display out the update rules program id, with additional useful info : which infoprovider, infosource, and detail info of the routine and infoobject in the update rule that using that function module. you may modify the program to have better display out list.
    hope this helps.
    REPORT  Z_FM_UPDRUL_WHEREUSED.
    data : lv_sfm,
           lv_line type string,
           lv_where type string.
    tables : rsaabap,RSUPDROUT,rsupdinfo.
    select-options:
    s_fm for rsaabap-LINE.
    start-of-selection.
      loop at s_fm.
        concatenate s_fm-low ' ' into lv_sfm.
        concatenate '%' s_fm-low into lv_line.
        concatenate lv_line '%' into lv_line.
        write : / 'function module', 'update rule id', 'routine id', 'infoobject', 'infocube', 'infosource'.
        select * from rsaabap
        where line like lv_line and objvers = 'A'.
           select * from rsupdrout
           where codeid = rsaabap-codeid and objvers = 'A'.
             select single * from rsupdinfo
             where updid = rsupdrout-updid and objvers = 'A'.
               write: / lv_sfm, rsupdrout-updid, rsaabap-codeid,
                        rsupdrout-iciobjnm, rsupdinfo-infocube,
                        rsupdinfo-isource.
        endselect.
        endselect.
      endloop.

  • Data Load Wizard not Inserting/Updating all rows

    Hello,
    I am able to run through the whole Data Load Wizard without any problems. It reports that it successfully inserted/updated all the rows, but when I look in the table, I find a few rows that were not updated correctly. Of the entries I've identified that don't get inserted/updated properly, I've noticed they are the same rows that I was having issues with earlier. The issue was a number format error, which I solved by providing an explicit number format.
    Is it possible that the false inserts/updates might still be tied to the number format, or are there other reasons why the data load is failing on only some rows.
    Thanks,
    Brian
    Edited by: 881159 on Mar 14, 2012 5:05 PM

    Hi Brian,
    I am not aware of the situation where you get false results. However, there were some issues with number/date formats that sometime were not properly parsed, and this has been fixed in 4.1.1 patch. would your case be different from the one described in bug 13656397, I will be happy to get more details so that I can take a look at what is going on.
    Regards,
    Patrick

  • Excel file causes 2008 to crash but not 4.5

    I have an excel file that is give or take 5MB which controls an excelsis dashboard, I have no issues with the spreadsheet on 4.5 but as soon as I load it into 2008 and try to create a .swf excelsius crashes (even with a blank model).
    The file has quite a few vlookups and concatenate's with data in xs of 13,000 rows.
    Can anyone give me any hints, does 2008 have more problems dealing with excel formula than 4.5 did?

    Gregory,
    Here are a few thing to try:
    1. Before opening Xcelsius have you ensured that there are no background istances of Excel running (use Ctrl +Alt + Delete) to view process running in background. If so, end the process.
    2. If this does not work, try uninstalling, restarting you PC, and reinstalling X2008 again.  This is probably the desired route if you can't even get a blank model to open.  We had to do this as well.
    Hope this helps! 
    Xcelsius Gurus
    http://www.everythingxcelsius.com
    "Xcelsius Gurus share tips, reviews, tricks and much more!"

  • "Save As" Function causes Adobe to Crash

    I am using Adobe Acrobat X Standard.  I am able to open adobe documents using Acrobat X.  I am able to create and edit forms as well as save changes to an existing PDF.  However, if I choose to "Save As PDF", Adobe crashes with this error:
    I have performed updates and repairs, but nothing has fixed this yet.  Any help?
    Thank you,
    Kristen

    I am still having this problem and it's quite annoying.  Does anyone have any help they can offer?  Please?
    Thank you!
    Kristen

  • Premiere Pro CS5 crashing and not allowing updates

    Hello,
    I'm experiencing two problems with ProCS5.
    First, while in pro, the program crashes when I click on a video clip in the Lib to view it in the monitor.
    Second, I tried to update to the program hoping to correct the first issue, but the update returns the error "installation unsuccessful" for unknown reasons.
    I am running:
      Model Name: Mac Pro
      Model Identifier: MacPro1,1
      Processor Name: Dual-Core Intel Xeon
      Processor Speed: 2.66 GHz
      Number Of Processors: 2
      Total Number Of Cores: 4
      L2 Cache (per processor): 4 MB
      Memory: 7 GB
      Bus Speed: 1.33 GHz
    I just installed a 1.5T hard drive for video editing and formatted as Mac OS Extended (Journaled).
    I can view the videos directly from the hard drive and the play back is fine.  I'm only having this problem in Premiere Pro CS5.
    Any help will be greatly appreciated
    Regards,
    DS

    >just not Mpeg 4s
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037?tstart=0
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
    Report back with the codec details of your file, use the programs below
    For Mac http://mediainfo.massanti.com/
    Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project

  • ICal, iSync, Alarms, causing my palm Treo 650 not to update

    Hi All,
    Looked around a bit and didn't see a solution to this issue and was hoping to find some information of confirm that it is a bug and I am not going crazy.
    A couple days ago I noticed that the events I entered on my Treo 650 were not getting synced to iCal through iSync. Upon looking closer, I noticed that the reverse was true as well: Events I added to iCal were not getting synced to the treo.
    The iSync logs said that everything was syncing successfully despite the problem. I double checked my settings on the treo and in iSync to make sure the calendars were scheduled to sync. All 6 of my calendars were checked to sync. Since this was all working a couple days prior, I assume the settings were correct.
    After resetting my treo and restoring a back-up in an attempt to get my calendar to work properly, I noticed that the calendars listed in iSync disappeared even though they still existed and seemed to work in iCal. iSync keep trying to tell me to open iCal to add a new calendar because there were none.
    After more fiddling I was only able to get iSync to properly list my current calendars by deleting a specific calendar. When I removed it entirely in iCal(I backed it up so I could test things out), iSync would update in a matter of seconds but if I put it back, no matter what I did, iSync would not update.
    Finally, I started removing specific events in the calendar. It seems when I removed all the events that contained "alarms" (which I had started playing with a couple days prior). The calendars would work again. So I suspect iCal alarms as a culprit.
    I can make due without the alarms for now, but would like to start using them again. I was starting to schedule applescripts to perform specific activities scheduled through iCal.
    Has anybody else run into this problem and/or found a workaround that allows you to use iCal with your palm/treo and schedule applescript alarms? Any advice would be great. Or, if you are having the same problem I am, check to see if you have alarms in iCal.
    I'm running Mac OS X 10.4.2 on a dual G5
    iCal Version 2.0.2 (1038)
    iSync Version 2.1 (88.0)
    Treo 650 (Verizon) (firmware update 1.03)
    Thanks,
    Michael

    Verizon Wireless does not now offer—and has not historically offered—the Palm Treo 680. The Treo 680 is a GSM device, and not compatible with the Verizon network. Verizon currently offers the Palm 700p and the 700wx, and has previously offered various Palm and Windows Mobile devices beginning with the Palm Treo 600.
    The anomalies you see are likely the result of issues with iSync and the iSync Palm conduit, and not with the device itself. With an advanced Palm device such as any Treo beyond the 600, you should instead opt to use either…
    • the Missing Sync for Palm OS, or
    • the Missing Sync for Windows Mobile
    …selecting whichever one supports the operating system of your particular Treo. In your case with a Treo 680, that's the Missing Sync for Palm OS.
    You can learn more about these products by pressing the links above.

  • Capturing the row info that causes an error during a massive insert/update by usign TRY ... CATCH - SQL Server 2012

    Hi,
    in a my stored procedure, I've put a massive update under the control of TRY ... CATCH construct.
    I'd like to capture for which key values it occurs the error putting somewhat in the begin catch ... end catch block.
    Any helps for me, please? Thanks

    This might give better picture of the error.BEGIN CATCH
    IF @@TRANCOUNT > 0
    ROLLBACK TRANSACTION;
    DECLARE @ErrorNumber INT = ERROR_NUMBER();
    DECLARE @ErrorLine INT = ERROR_LINE();
    DECLARE @ErrorMessage NVARCHAR(4000) = ERROR_MESSAGE();
    DECLARE @ErrorSeverity INT = ERROR_SEVERITY();
    DECLARE @ErrorState INT = ERROR_STATE();
    PRINT 'Actual error number: ' + CAST(@ErrorNumber AS VARCHAR(10));
    PRINT 'Actual line number: ' + CAST(@ErrorLine AS VARCHAR(10));
    RAISERROR(@ErrorMessage, @ErrorSeverity, @ErrorState);
    END CATCH

  • Insert/Update/Delete in forms6i using Objects table in Oracle9i server

    I am using Oracle 9i server and dev 6i (forms6i).
    i have a form based on Object tables (including REF's items). when i try to insert update, delete the reocrd in the form, it gives error.
    Insert/Update/Delete failed because of OCI_22132: hexadecimal string does not corresopond to a valid REF.
    when i remove REFs items from form (not from database) then it does all functions (insert,update,delete,query).
    Actually i haved used this form with Oracle 8i and it did all functions(insert,update,delete,query). i am using the same tables and types definations in Oracle 9i but it is not working.
    Note: Insert, Update, Delete, or Query is not being done through forms when using REFs items. Others tools like sql*plus are performing the same actions very well.
    Please help.
    I will be thankful to you.
    M. Faisal.

    user563114,
    As James (padders) told you in his reply to a similar question that you posted (Typed tables is treated in the same way as a relational table?) in the Typed tables is treated in the same way as a relational table? forum, the only way you can tell for sure is to try it out both ways, measure and compare the times.
    Of-course, there are many factors that effect the time, apart from whether you use a nested table or a regular table.
    Good Luck,
    Avi.

  • Adobe application manager not finding updates on PSE11

    There should be a camera raw 7.4 update available, but it is not being found and I am not sure what other updates are not being found.
    In addition I did a manual download of Adobe Patch Installer and when it was launched got the following message in the UPDATES pop up:
         > Error loading Updater workflow
    I suspect this may be the root cause of the application manager not finding updates.
    Any suggestions on how to get this Updater workflow to load?

    FYI - I did an un-install and re-install of PSE11 and it looks like that has worked as the system is now recognizing available updates :-)

  • Error meesage on UI sCannot insert/update Array without context information

    Hi All,
    As soon as page runs , i m getting the below error on server logs and also getting the same error once page page loads , user click on SellectmnayListBOx components on screen .
    Appriciate if any inputs on this . using ADF6 .
    <ApplicationModuleImpl> <doPoolMessage>
    oracle.jbo.AfterRollbackException: JBO-26102: An error occurred after rollback was performed.
         at oracle.jbo.server.DBTransactionImpl.rollback(DBTransactionImpl.java:2595)
         at oracle.jbo.server.ApplicationModuleImpl.resetState(ApplicationModuleImpl.java:4840)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:336)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:9084)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4607)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.resetApplicationModule(ApplicationPoolImpl.java:2026)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.removeSessionCookie(ApplicationPoolImpl.java:879)
         at oracle.jbo.common.ampool.SessionCookieImpl.removeFromPool(SessionCookieImpl.java:711)
         at oracle.jbo.common.ampool.SessionCookieImpl.destroy(SessionCookieImpl.java:650)
         at oracle.jbo.common.ampool.SessionCookieImpl.timeout(SessionCookieImpl.java:697)
         at oracle.adf.model.bc4j.DCJboDataControl.releaseImmediateAMUnmanaged(DCJboDataControl.java:2525)
         at oracle.adf.model.bc4j.DCJboDataControl.releaseApplicationModule(DCJboDataControl.java:2429)
         at oracle.adf.model.bc4j.DCJboDataControl.release(DCJboDataControl.java:903)
         at oracle.adf.model.dcframe.DataControlFrameImpl.release(DataControlFrameImpl.java:364)
         at oracle.adf.model.BindingContext.resetState(BindingContext.java:637)
         at oracle.adf.model.BindingContext.release(BindingContext.java:609)
         at oracle.adf.model.servlet.HttpBindingContext.valueUnbound(HttpBindingContext.java:77)
         at weblogic.servlet.internal.session.SessionData.removeAttribute(SessionData.java:720)
         at weblogic.servlet.internal.session.SessionData.removeAttribute(SessionData.java:702)
         at weblogic.servlet.internal.session.SessionData.remove(SessionData.java:976)
         at weblogic.servlet.internal.session.MemorySessionContext.invalidateSession(MemorySessionContext.java:69)
         at weblogic.servlet.internal.session.SessionContext.invalidateSession(SessionContext.java:475)
         at weblogic.servlet.internal.session.MemorySessionContext$SessionCleanupAction.run(MemorySessionContext.java:114)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.session.MemorySessionContext.destroy(MemorySessionContext.java:90)
         at weblogic.servlet.internal.WebAppServletContext.destroy(WebAppServletContext.java:3220)
         at weblogic.servlet.internal.ServletContextManager.destroyContext(ServletContextManager.java:247)
         at weblogic.servlet.internal.HttpServer.unloadWebApp(HttpServer.java:461)
         at weblogic.servlet.internal.WebAppModule.destroyContexts(WebAppModule.java:1535)
         at weblogic.servlet.internal.WebAppModule.deactivate(WebAppModule.java:507)
         at weblogic.application.internal.flow.ModuleStateDriver$2.previous(ModuleStateDriver.java:387)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:215)
         at weblogic.application.internal.flow.ModuleStateDriver.deactivate(ModuleStateDriver.java:141)
         at weblogic.application.internal.flow.ScopedModuleDriver.deactivate(ScopedModuleDriver.java:206)
         at weblogic.application.internal.flow.ModuleListenerInvoker.deactivate(ModuleListenerInvoker.java:261)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$2.previous(DeploymentCallbackFlow.java:547)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:215)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.deactivate(DeploymentCallbackFlow.java:192)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.deactivate(DeploymentCallbackFlow.java:184)
         at weblogic.application.internal.BaseDeployment$2.previous(BaseDeployment.java:642)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:215)
         at weblogic.application.internal.BaseDeployment.deactivate(BaseDeployment.java:227)
         at weblogic.application.internal.EarDeployment.deactivate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.deactivate(DeploymentStateChecker.java:198)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.deactivate(AppContainerInvoker.java:98)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.silentDeactivate(AbstractOperation.java:679)
         at weblogic.deploy.internal.targetserver.operations.RedeployOperation.unprepareDeployment(RedeployOperation.java:197)
         at weblogic.deploy.internal.targetserver.operations.RedeployOperation.doPrepare(RedeployOperation.java:120)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: oracle.jbo.JboException: Cannot insert/update Array without context information     at oracle.jbo.domain.Array.prepareForDML(Array.java:802)
         at oracle.jbo.server.ViewRowSetImpl.prepareLobObjectForBind(ViewRowSetImpl.java:8301)
         at oracle.jbo.server.ViewRowSetImpl.getParametersAsStorageTypes(ViewRowSetImpl.java:5074)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1169)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1397)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1303)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:1288)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:7107)
         at com.tuitravelad.modelbase.bc.base.vo.TuiTravelADViewObject.afterRollback(TuiTravelADViewObject.java:168)
         at oracle.jbo.server.DBTransactionImpl.rollback(DBTransactionImpl.java:2570)
         ... 62 more
    ## Detail 0 ##
    oracle.jbo.JboException: Cannot insert/update Array without context information
         at oracle.jbo.domain.Array.prepareForDML(Array.java:802)
         at oracle.jbo.server.ViewRowSetImpl.prepareLobObjectForBind(ViewRowSetImpl.java:8301)
         at oracle.jbo.server.ViewRowSetImpl.getParametersAsStorageTypes(ViewRowSetImpl.java:5074)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1169)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1397)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1303)
    Thanks

    Hi,
    this
    +"As soon as page runs , i m getting the below error on server logs and also getting the same error once page page loads , user click on SellectmnayListBOx components on screen ."+
    cannot be the full story you tell. The exception is thrown in the context of a prepareForDML, which is called on entities for the Create / Update and Delete use case. I also see a failed rollback. So there must be something you do before this happens during a page refresh
    Frank

Maybe you are looking for

  • Mail Email Preview Panel Display Error

    I've recently upgraded to Lion and, with it, to Mail 5.1. I'm having a problem with the new display in Mail. The Preview pane is only displaying the top half of the lines of text in the 'From' and 'Subject' fields. The previewed lines of text from th

  • Change of Ship-to-party address in IC WebClient

    Dear Guru's, Acc. my business requirement i need to configure IC-webclient, Scenario1:- End User should be able to change the Ship-to-party address (on customers request) thru IC-Webclient. (in this scenario sold-to-party & ship-to-party are 2 differ

  • Do I need to create an account??

    Hello, may sound strange but when I go to iChat, preferences, add account i get the 'account setup' dialog box. I enter my MobileMe credentials but there is a 'Get an iChat account...' push button displayed. Is this just a standard button or do I nee

  • No micro data cable for my Nokia 5230

    I bought my new 5230 online from Vodafone a week ago.  I wasn't aware there wouldn't be a data cable!  Vodafone don't sell them online and as I haven't full mobility, it's hard for me to source one.  My husband bought a micro usb data cable for me, b

  • Looking for a program, can anyone help?

    I used to have this program on an older mac, and i am completely blanking on the name of it. It scanned your hard drives and then displayed a graph, showing how much space each different kind of file created. By graph, I realy mean it showed boxes th