Dgidx failed with multiple dvals

Hi,
I am getting dgidx failed exception in baseline update. Below was the exception,
11.05.14 07:08:03] SEVERE: Batch component  'Dgidx' failed. Refer to component logs in /home/endeca/apps/belk/./logs/dgidxs/Dgidx on host IT
LHost.
Occurred while executing line 33 of valid BeanShell script:
30|        RestoreForgePipelineEntities.run();
31|        Forge.run();
32|        Dgidx.archiveLogDir();
33|        Dgidx.run();
34|
35|        // distributed index, update Dgraphs
36|        DistributeIndexAndApply.run();
Please see below error in dgidix logs.
FATAL   11/05/14 12:08:02.921 UTC (1415189282921)       DGIDX   {dgidx,baseline}        Multiple dvals with id [4294856371] in dimension XML ("Sleepwear & Robes"). Exiting.
When i check the manual dimension.xml  i am seeing only one value 4294856371 of the folder Sleepwear & Robes. Can anyone please help me analyzing this issue.

Hi
I have had this problem when there are multiple profit centres in a GR. We did try some configuration options like adding Expenses category to 600 but found that the GR IR line was also being split and that was not the requirement. It is in the Document Splitting Configuration that you will find the answer to this issue, though the results after configuration may not be exactly what you want.

Similar Messages

  • Receiving Transaction Processor fails with multiple distribution lines

    Hi All,
        I am having a problem with 'Receiving Transaction Processor' when receiving is done against a multiple distributions line that has different project, task data.  The concurrent program 'Receiving Transaction Processor' completes normally but when you check the quantity_received in po_line_locations_all table it shows partial quantity received.
    example:
    PO# Test_PO1
    Line#1, Shipment#10001, Dist#101, Quantity Ordered: 1, Amount $1000 (Dollar based line), Project_ID: 335803, Task_ID: 12057618
    Line#2, Shipment#20001, Dist#101, Quantity Ordered: 3, Amount $750, Unit Price: $250, Project_ID: 335803, Task_ID: 12057618
    Line#2, Shipment#20001, Dist#102, Quantity Ordered: 2, Amount $500, Unit Price: $250, Project_ID: 336488, Task_ID: 12121488
    Receiving performed using 'Receiving Transaction Processor' by populating data in RCV_Transactions_Interface and RCV_Headers_Interface tables and it gave following error for one of the distribution
    from po_interface_errors table.
    Line#1, Shipment#10001, Dist#101, Received Amount $400 (Successfully interfaced)
    Line#2, Shipment#20001, Dist#101, Quantity Received: 1 (Successfully interfaced)
    Line#2, Shipment#20001, Dist#102, Quantity Received: 1 (Failed with below error)
    Error_Message: Error: The PROJECT_ID specified is invalid.  The value specified (336804) does not match the expected value (335803).
    Interface_Type: RCV-856
    Error_Message_Name: RCV_INVALID_ROI_VALUE
    Table Name: RCV_HEADERS_INTERFACE
    Note: This happens only when you have different project_id and task_id values on each distribution for Line#2, Shipment#20001
    Please let me know if someone have already came across this issue or if there is already any patch for this issue.
    Any help with this issue is appreciated.
    Thanks,
    Sri

    Hi,
    Probably, if you put this under SCM - Discrete Manufacturing, your question could solicit more replies..
    Rgds,
    Rakesh

  • Clone failing with multiple RMAN errors

    Environment:
    Cloning from 10.2.0.3 to 10.2.0.3
    Solaris 2.9 source to Solaris 2.10 target
    11.1.0.7 RMAN catalog
    TSM 5.4 MML (tape)
    I'm trying to clone a database via RMAN catalog which is at 11.1.0.7. My environment info is listed above.
    If I try this on another Solaris 2.10 machine it works fine.
    The whole clone works until the very end when the database clone tries to restart and create and assign a TEMP.
    I get the following error messages in the clone log:
    contents of Memory Script:
    shutdown clone;
    startup clone nomount ;
    executing Memory Script
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/17/2009 12:18:28
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03014: implicit resync of recovery catalog failed
    RMAN-03009: failure of partial resync command on default channel at 06/17/2009 12:18:28
    RMAN-10015: error compiling PL/SQL program
    RMAN-10033: error during compilation of job step 1: ORA-01041: internal error. hostdef extension doesn't exist
    ORA-03113: end-of-file on communication channel
    ORACLE error from recovery catalog database: ORA-03114: not connected to ORACLE
    At this point if I point at the new control file and start the database I can manually ALTER the database open with resetlogs and everything "seems" fine in the clone since it did make it all the way through the archive log applies. I have ran CROSSCHECK backup+ and CROSSCHECK archivelog all+ against my catalog and it found nothing out of the norm.
    Like I mentioned above if I try this on another system at the same DB and OS level it works just fine.
    Has anyone every seen this error?
    Below is the clone script I am using:
    connect auxiliary /
    connect target sys/@proddb
    connect catalog rman/pw@rmancat
    run {
    set until time "to_date('2009-06-11:08:00:00', 'RRRR-MM-DD:HH24:MI:SS')";
    allocate auxiliary channel t1 type 'sbt_tape'
    parms 'ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin64/tdpo.opt.dbhost1)';
    duplicate target database to proddbcl
    nofilenamecheck;
    }

    Hi,
    It is complaining about the resync between the target database and the recovery catalog.
    RMAN-03014: implicit resync of recovery catalog failed
    RMAN-03009: failure of partial resync command on default channel at 06/17/2009 12:18:28
    It should use the default channel as configured in the target proddb controlfile.
    Can you test if you declare this channel in the script if it works (probably you need to copy tdpo.opt.dbhost1 file from the proddb server and adjust path and name)?
    connect auxiliary /
    connect target sys/@proddb
    connect catalog rman/pw@rmancat
    run {
    set until time "to_date('2009-06-11:08:00:00', 'RRRR-MM-DD:HH24:MI:SS')";
    allocate auxiliary channel t1 type 'sbt_tape'
    parms 'ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin64/tdpo.opt.dbhost1)';
    allocate channel t2 type 'sbt_tape'
    parms 'ENV=(TDPO_OPTFILE=define_path/define_file)';
    duplicate target database to proddbcl
    nofilenamecheck;
    Regards,
    Tycho
    Edited by: tychos on Jun 17, 2009 12:46 PM

  • ATG Endeca - Baseline Index - Multiple dvals with same id

    Hello!
    When I press to run the baseline index using component of ATG /atg/commerce/endeca/index/ProductCatalogSimpleIndexingAdmin/ , occured the problem below in DGIDX
    Below the problem:
    Parsing XML dimensions data with validation turned on
    Parsing project file "/u01/oracle/Middleware/endeca/Apps/Work/data/forge_output/Work.xml" (project="Work")
    XMLParser: Reading dimensions, dvals, and synonyms from file "/u01/oracle/Middleware/endeca/Apps/Work/data/forge_output/Work.dimensions.xml"
    In Dval [id=1000000] named "dim.sku.activePrice", the name is non-searchable.
    In Dval [id=1000007] named "dim.product.likes", the name is non-searchable.
    In Dval [id=1000008] named "dim.product.avgRate", the name is non-searchable.
    In Dval [id=1000009] named "dim.sku.color", the name is non-searchable.
    In Dval [id=1000010] named "dim.sku.salePrice", the name is non-searchable.
    In Dval [id=1000017] named "dim.sku.sizeChartSku", the name is non-searchable.
    In Dval [id=1000018] named "dim.parentCategories.displayName", the name is non-searchable.
    In Dval [id=1000019] named "dim.product.displayName", the name is non-searchable.
    In Dval [id=1000020] named "dim.sku.displayName", the name is non-searchable.
    FATAL 09/24/13 20:03:39.666 UTC (1380053019666) DGIDX {dgidx,baseline} Multiple dvals with id [1000018] in dimension XML ("dim.parentCategories.displayName"). Exiting.
    WARN 09/24/13 20:03:39.666 UTC (1380053019666) DGIDX {dgidx,baseline} Lexer/OLT log: level=-1: 2013/09/24 17:03:39 | INFO    | Disabling log callback
    I have tried run the load_baseline_test_data and after baseline_update, but unsuccessfully!
    anybody?
    thank you....

    This forum discusses the Endeca Information Discovery (EID) product.  You will get better attention to your question over at the Endeca Experience Management forum, https://forums.oracle.com/community/developer/english/endeca_experience_management/technical_questions .

  • DataSocket fails intermittently with multiple NICs enabled using LV7.1

    Using LV7.1 and Datasocket v4.2, I was intermittently (but quite often) having problems reading and writing to the datasocket server (primarily from the server side). My application should read the value in the item and upon finding a specific string it should immediately follow it with a write of a default string. However, it can find the same string multiple times and not complete the write. Logging the errors from the write shows that no error is occurring. The client is not at fault because it only writes the string once every few minutes. I was able to finally show that by disabling the extra NIC on my system running the datasocket server that the connection seems to operate reliably. Both NICs
    were set to static IP addresses, but only one was connected. I do have the program writing to "dstp://localhost/UUT" as opposed to a specific IP address (not sure if it matters).
    With Labview6.1 I did not have this problem. It was only after I re-compiled my application with LV7.1 that I started having issues.

    Philip,
    I do not feel I am running out of bandwidth since I have run it successfully on 1Gbit NIC connections on a P4 2.4GHz system as well as a 10/100Gbit NIC on an old 650MHz system with LV6.1. I only do two writes per variable (on up to 8 variables) once every few minutes. I did not seem to be a re-entrant VI issue.
    I have created two VIs which should allow you to recreate the failing conditions with multiple NICs enabled. It responds very quickly with one NIC enabled, but when one or two more NICs is enabled, it gets very slow to respond and has some timeouts.
    One VI is the writer, the other is the reader. Start both VIs and start all 8 reader loops. Then you can consecutive
    ly click on all 8 sender loops. Doing this with and without multiple NICs enabled should show you the problem.
    Note: I think the issue I was talking about in earlier posts about getting multiple strings back before it wrote out "Loop" was due to the fact that the writes were not occurring quickly enough and the reads were happening multiple times. Therefore, in these VIs, I revised the read and close timeouts to -1.
    I think it would be best if you could call me so we can discuss this issue. If you can email me, I will send you my contact information if you don't already have access to it.
    Attachments:
    ReadSocket_Multiple_MSHv1.vi ‏360 KB
    WriteSocket_Multiple_MSHv1.vi ‏216 KB

  • B2B Inbound File with Multiple Transactions failing

    Hi ,
    Problem Summary: When the inbound file is coming with multiple transactions (combination of 997 and non-997) ,
    If the 997 is the FIRST transaction in file, B2B is processing only 997 and remaning transactions are getting rejected.
    Where as if the 997 is the LAST transaction in file, then all the transactions are processing correclty.
    SOA Version: SOA 11G (11.1.1.5).
    Example 1: below sample we got two transactions, 997 and 214. here 997 is the FIRST transaction in the file.
    in this case B2B is processing 997 correctly, and 214 is errored with below error message
    "B2B-51507 - A data segment with 'Mandatory' status is missing. A data segment with 'Mandatory' status is missing. An X12 syntax error occurred. An X12 syntax error occurred. An X12 syntax error occurred. A data segment with 'Mandatory' status is missing. A data segment with 'Mandatory' status is missing.
    ISA00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005822*0*P*:~*
    GSFA*xxxx*1234555*20120516*1018*5822*X*004010~*
    ST997*58220001~*
    AK1SM*7159~*
    AK9A*1*1*1~*
    SE000004*58220001~*
    GE1*5822~*
    IEA1*000005822~*
    ISA*00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005823*0*P*:~
    GS*QM*xxxx*1234555*20120516*1018*5823*X*004010~
    ST*214*58230001~
    B10*2313813*M1213131*xxxx~
    N1*SF*xxxxxx*ZZ*124~
    N4*xxxxxx*AR~
    LX*1~
    AT7*AF*NS***20120516*1017*LT~
    MS1*xxxxx*AR~
    L11*01*QN~
    AT8*G*L~
    SE*10*58230001~
    GE*1*5823~
    IEA*1*000005823~
    Example 2 : below sample we got two transactions, 997 and 214. here 997 is the LAST transaction in the file.
    in this case B2B is processing ALL TRANSACTIONS correctly
    ISA*00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005823*0*P*:~
    GS*QM*xxxx*1234555*20120516*1018*5823*X*004010~
    ST*214*58230001~
    B10*2313813*M1213131*xxxx~
    N1*SF*xxxxxx*ZZ*124~
    N4*xxxxxx*AR~
    LX*1~
    AT7*AF*NS***20120516*1017*LT~
    MS1*xxxxx*AR~
    L11*01*QN~
    AT8*G*L~
    SE*10*58230001~
    GE*1*5823~
    IEA*1*000005823~
    ISA00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005822*0*P*:~*
    GSFA*xxxx*1234555*20120516*1018*5822*X*004010~*
    ST997*58220001~*
    AK1SM*7159~*
    AK9A*1*1*1~*
    SE000004*58220001~*
    GE1*5822~*
    IEA1*000005822~*
    Thanks,
    Naveen

    Hi,
    My name is Phil DeLaine and I work for one of Oracle's Gold Partners, TechDemocracy.
    I saw your post about the B2B transaction errors you are experiencing. We have great experience with B2B and have solved very complex problems. (References available.)
    Would you like to use one of our B2B expert technical resources to solve this problem and deliver your project error free and fully functional?
    Please let me know if you would like to discuss what we can do for you. You can reach me anytime.
    Regards,
    Phil
    Phil DeLaine
    Sales Director - Northeast
    TechDemocracy
    (978) 758-3156 (Cell)
    [email protected]
    http://www.techdemocracy.com/
    Our Successes:
    1) We won the 2011 Oracle Titan Award for the Best Middleware Implementation. Our award winning solutions included SOA, IAM and BI.
    2) We have been awarded with the highly prestigious Oracle ACE Director status for outstanding industry achievement and track record.
    3) We sit on several Advisory Boards for Oracle Product Management (for Fusion Middleware Products).
    4) We are an Oracle Center of Excellence Partner for SOA and IAM.
    5) We are frequently invited to speak at a number of Oracle Customer Success forums such as Oracle's "OpenWorld".
    6) We have been rated by Inc. Magazine as one of the top 10 fastest growing companies for 3 consecutive years.
    7) We have won and successfully deliveried several projects at Fortune 100, 500 and 1,000 companies. (References Available)

  • When deploy multiple updates, some updates fail with Hash does not match expected

    If I deploy a few updates (less than 5) the deployment completes without any issues.  If I have a lot of updates,  most the updates install with no issues but some, and not always the same update, fails with an error in the CAS.log on the client
    that states "Hash does not match expected"  after several reties the update will download and install.
    What could be causing this?
    I have setup a new folder that is not on the root of the drive.  This has not help with this issue but is handy in organization. 
    Ashley
    County of San Bernardino
    Assessor\Recorder\Clerk
    Automated System Analyst

    It you don't do anything and the hash calculates and downloads correctly then I would look to a network error of packet corruption or something wrong with the DP.
    http://www.sccm-tools.com http://sms-hints-tricks.blogspot.com

  • New Local Move Request fails with error "Multiple objects with Guid hex octet string were found."

    I can find nothing searching online.  Trying to move the last user mailbox from one server to another, but it fails with this error.  I have checked all mailboxes for the same GUID but can't locate it anywhere.  Anybody have some suggestions?

    Does anyone know if there is a way to perform a search based on mailbox GUID?  Maybe I could find all objects with the same and it could lead me in the right direction.
    Hi,
    To find the object that belongs to a GUID, you can refer to this blog.
    http://blogs.technet.com/b/ehlro/archive/2010/04/22/how-to-find-the-object-that-belongs-to-a-guid.aspx
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • Advise on using DBMS_XA with multiple branches under one global transaction

    Dear all
    I need some advise on using DBMS_XA from PL/SQL with tightly coupled multiple branches under one global transaction. Basically, I've successfully written some PL/SQL code that in 3 different sessions attaches to 3 different branches of one global transaction and before ending each branch they can see each others uncommitted data. So far so good.
    However, I'm not sure I completely understand how each branch must call xa_end, xa_prepare and xa_commit correctly using two phase commit and my calls result in errors like:
    ORA-24767: transaction branch prepare returns read-only (XA error code 3 = Transaction was read-only and has been committed)
    ORA-24756: transaction does not exist (XA error code -4 = XID is not valid)
    ORA-02051: another session or branch in same transaction failed or finalized
    This is the structure of my programs (3 SQL*Plus sessions):
    main: Uses xid 123|0 (branch 0 of global transaction 123). This should be the coordinator that commits using two phase commit across the 3 branches
    m1.xa_start tmnoflags
    m2.DML
    m3.Wait for thread A + B to manually be started and run xa_end
    m4.xa_end tmsuccess
    m5.xa_prepare
    m6.xa_commit false
    thread A: Uses xid 123|A (branch A of global transaction 123)
    a1.xa_start tmnoflags
    a2.DML -- thread A can see main and thread B's data
    a3.xa_end tmsuccess
    a4.xa_prepare -- required?
    a5.Should we also call xa_commit false?
    thread B: Uses xid 123|B (branch B of global transaction 123)
    b1.xa_start tmnoflags
    b2.DML -- thread B can see main and thread A's data
    b3.xa_end tmsuccess
    b4.xa_prepare -- required?
    b5.Should we also call xa_commit false?
    The failing steps are:
    m5
    m6
    a4
    a5
    b4
    b5
    Before starting calling xa_end I see 3 rows in V$GLOBAL_TRANSACTION, eg (hex 7B = decimal 123):
    FORMATID GLOBALID BRANCHID BRANCHES REFCOUNT PREPARECOUNT STATE FLAGS COUPLING
    203348753 0000007B 00000000000000000000000000000000 3 3 0 ACTIVE 0 TIGHTLY COUPLED
    203348753 0000007B 0000000000000000000000000000000A 3 3 0 ACTIVE 0 TIGHTLY COUPLED
    203348753 0000007B 0000000000000000000000000000000B 3 3 0 ACTIVE 0 TIGHTLY COUPLED
    Thanks a lot in advance.
    Cheers
    Finn

    OK, I've figured it out. This is poorly documented as it's not well explained how to handle the various return codes. Turns out that all but the last xa_prepare calls return dbms_xa.xa_rdonly (tightly coupled branches are combined -- "read only" optimization), the last one returns dbms_xa.xa_ok and this is when you should call xa_commit.
    Now my next problem is that DBMS_XA doesn't work from within jobs (DBMS_JOB and DBMS_SCHEDULER), which makes it very difficult to use DBMS_XA. My purpose of using DBMS_XA is to coordinate work across multiple sessions in one transaction but if I can't easily create the multiple sessions, I'm stuck.
    When called from a job, xa_start throws:
    ORA-24789: start not allowed in recursive call
    on Oracle 11.2. In Oracle 11.1 it works, but xa_end fails with
    ORA-25352: no current transaction
    so I guess in fact the xa_start call didn't really work either, even though it returned tm_ok.
    I'm now trying to find a workaround on how to use DBMS_XA from within jobs, please comment if you have any suggestions. Or if you have any suggestions on other means of establishing the concurrent sessions (I wouldn't like to resort to external programs that need username/password to connect as password management would be a security issue).
    Thanks in advance.
    Cheers
    Finn

  • Atempt to start OMS for Grid Control 11g fails with - Unexpected error occu

    Hello,
    I am running Grid Control 11g.
    Repository DB is 11.2.0.1
    Both the Grid Control and DB server are running in same machine - redhat 5.
    When trying to start the oms, this fails with the below error:
    Oracle Enterprise Manager 11g Release 1 Grid Control
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    Starting WebTier...
    WebTier Successfully Started
    Starting Oracle Management Server...
    Oracle Management Server is not functioning because of the following reason:
    Unexpected error occurred. Check error and log files.
    The emctl.log shows the following error which I am unable to debug:
    2011-09-13 11:20:05,619 [main] DEBUG oms.StatusOMSCmd processStatusOMS.138 - HTTP port in emgc property file: 7202
    2011-09-13 11:20:05,620 [main] DEBUG oms.StatusOMSCmd processStatusOMS.139 - HTTPS port in emgc property file: 7301
    2011-09-13 11:20:05,620 [main] DEBUG oms.StatusOMSCmd processStatusOMS.155 - Using http port.
    2011-09-13 11:20:05,620 [main] DEBUG oms.StatusOMSCmd processStatusOMS.195 - Attempting to connect to http://<host>.<domain>:7202/em/console/logon/logon
    2011-09-13 11:23:05,596 [main] ERROR oms.StatusOMSCmd processStatusOMS.239 - Read timed out
    java.net.SocketTimeoutException: Read timed out
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at HTTPClient.BufferedInputStream.fillBuff(BufferedInputStream.java:206)
    at HTTPClient.BufferedInputStream.read(BufferedInputStream.java:126)
    at HTTPClient.StreamDemultiplexor.read(StreamDemultiplexor.java:348)
    at HTTPClient.RespInputStream.read(RespInputStream.java:147)
    at HTTPClient.RespInputStream.read(RespInputStream.java:108)
    at HTTPClient.Response.readResponseHeaders(Response.java:1107)
    at HTTPClient.Response.getHeaders(Response.java:832)
    at HTTPClient.Response.getStatusCode(Response.java:331)
    at HTTPClient.RetryModule.responsePhase1Handler(RetryModule.java:92)
    at HTTPClient.HTTPResponse.handleResponseImpl(HTTPResponse.java:872)
    at HTTPClient.HTTPResponse.access$000(HTTPResponse.java:62)
    at HTTPClient.HTTPResponse$2.run(HTTPResponse.java:839)
    at HTTPClient.HTTPResponse$2.run(HTTPResponse.java:837)
    at HTTPClient.HttpClientConfiguration.doAction(HttpClientConfiguration.java:666)
    at HTTPClient.HTTPResponse.handleResponse(HTTPResponse.java:837)
    at HTTPClient.HTTPResponse.getStatusCode(HTTPResponse.java:242)
    at oracle.sysman.emctl.oms.StatusOMSCmd.processStatusOMS(StatusOMSCmd.java:199)
    at oracle.sysman.emctl.wls.OMSController.statusOMS(OMSController.java:867)
    at oracle.sysman.emctl.wls.OMSController.startOMS(OMSController.java:606)
    at oracle.sysman.emctl.wls.OMSController.main(OMSController.java:213)
    2011-09-13 11:23:05,597 [main] INFO wls.OMSController statusOMS.950 - statusOMS finished with result: 9
    In emgc.properties, I have MSPORT=7202.
    I have used the notes in Metalink 1287904.1, but without resolution.
    I am able to connect with sqlplus, with user sysman, without issues. There are no invalid objects under sysman.
    emoms.trc shows the following:
    2011-09-11 15:51:53,160 [JobWorker 22356:Thread-108] WARN jdbc.ConnectionCache _getConnection.353 - Invalid or Stale Connection found in the Connection Cache
    java.sql.SQLException: Invalid or Stale Connection found in the Connection Cache
    Thank you for support.
    Regards,
    Horia
    Edited by: horia.berca on Sep 13, 2011 5:29 AM
    Edited by: horia.berca on Sep 13, 2011 5:32 AM
    Edited by: horia.berca on Sep 13, 2011 5:35 AM
    Edited by: horia.berca on Sep 13, 2011 5:45 AM

    Hello again;
    Check the solution in this: ( and note the multiple versions of oracle it covers )
    UNABLE TO FIND GRID INFRASTRUCTURE LISTENER (Doc ID 1483234.1)
    Best Regards
    mseberg

  • Rendering of Proxies in AE fails with generic error messages.

    *sigh* working with AVC in CS4 on my quad core has been an exercise in pain.
    I've followed the optimization guides linked to in the different forum posts and that lets me zip along until I actually start adding effects. Then I am right back to a crawl. I recently discovered proxies in AE and learned that I can use "replace" in premeire to leverage those same proxies... Sweet... When I works I am back to editing in both in real time!
    The problem is AE is regularly failing to generate proxies for me and I cannot figure out why. All my video is shot the same 24mbps, 60fps, 1080p (true 60i). All shot from my Canon HF S10.
    The error is always "Error reading frame from file" and it always occurs just before the render is about to complete. Sometimes I get lucky and a working .mov was generated in spite of the error. Bu most times the file isn't there.
    So my 2.4ghz quad core with 8gb ram can't edit the originals and I can't create proxies... I'm effectively dead in the water.
    I tried using Media Encoder to generate my proxies with no success either. It fails with "Unspecified Error".
    Both times I am trying to encode to Quicktime, Jpeg, Draft Settings. For the heck of it I tried different codecs, etc. Nothing seems to help. Even worse is sometimes if I just queue the same file multiple times it eventually works.
    Is there anything at all I can do to make successful proxy generation less like winning the lottery?

    Yeah I updated to that right away. Premiere itself seems to behave most of the time. To be honest I've hardly had any problems with Premiere even before the 4.2 update.
    But AVC (mts files) seem to be very problematic in AE in general. I also experience the issue mentioned here:
    http://forums.adobe.com/message/2404464
    Sounds like re-encoding to another format is the only way I'll be able to work in AE reliably. So I have to figure out a way to get Media Encoder to finish it's jobs.

  • "New lifecycle definition" fails with "Unexpected error"

    This problem has been previously posted without resolution.
    Select "Lifecycle Definitions -> New lifecycle definition".
    Error:
    "Unexpected error, unable to find item name at application or page level.
    A severe error has occurred. Possible causes may include moving directly to a page using the browser history or Back key, multiple users attempting to change the same data or an application defect. Please visit the Support page under the Help Tab to report the error.
    Press here to return to the parent page"
    A resolution to this would be apprciated.
    Please note this problem is based on APEX 4. About to retest on APEX 3.2 to see if it is happening there.
    Edited by: user774105 on 7/03/2011 17:26
    Have back ported to 3.2 and the problem no longer occurs. Not sure what has changed between versions, but there are a number of links in the Assitant that fail with the above error in APEX 4.
    Edited by: user774105 on 7/03/2011 19:45

    Hi
    I have also encounter the same error . Currently i have apex version 4.
    User: SYSTEM
    Unexpected error, unable to find item name at application or page level.
    A severe error has occurred. Possible causes may include moving directly to a page using the browser history or Back key, multiple users attempting to change the same data or an application defect. Please visit the Support page under the Help Tab to report the error.
    Press here to return to the parent page
    Any solution for this with apex version 4
    Thanks and Regards
    Ganesan Sivaraman

  • Excel fails with unexpected error unless vba editor opened before running

    i have an excel macro which fails with an unexpected error unless i open vba editor first
    EXACT MESSAGE IS
    "MICROSOFT EXCEL HAS ENCOUNTERED A PROBLEM AND NEEDS TO CLOSE, WE ARE SORRY FOR THE INCONVENIENCE"
    I HAVE SENT AN ERROR REPORT many times, no response
    this prevents running as auto_open
    why?
    what initialization takes place by opening vba editor that does not take place with out doing so?

    As this is unusual behavior (not seen by most of us Excel users), and you indicate that it happens on multiple PCs (so it isn't something corrupt on just one machine), it seems likely that it is something specific to the code you are trying to run.
    It might be helpful if you post your code, and specifically where you are placing the code (personal.xlsb, a regular module, a class module, behind a specific worksheet, or behind the "this workbook" object).
    Also, how are you triggering the macro- are you running it from the macro dialogue box, a custom worksheet button, a userform, or something else?

  • Problem with multiple Toplink/JPA apps in same server

    Anyone have experence of running serveral Toplink/ EJB-3 Web apps in the same server (OC4J, alas)?
    We seem to get a problem with the second app failing to initialise toplink, with an entity not found message. Each app runs OK on it's own.

    Yes, they access the same datasource and most of the tables overlap.
    We're thinking it might help to have common entity classes and put them in a shared library, but I don't know if this is relevant (setting up shared libraries complicates testing and tends to snowball, I reckon we need about 15 jars all told).
    I''ve had some funnies on OC4J before which I think may be to do with it's use of ClassLoaders, for example I initially put persistence.xml in the libary jar with the data model, but for some reason I get the entity not found error that way. It only seems to work if it's in the classes folder.
    For the moment we're getting arround the problem with multiple OC4J instances in the server.

  • Scheduling Agreement  with multiple line items of different plants

    Dear Gurus,
    In all plants, delivery of goods is done through multiple plants under one sales order.
    The system is given provision to create centralized sales order with multiple delivery plants but it fails at the time of execution.
    Hence sales order of same customer has to be prepared three times which leads to lack of control at central office.
    scheduling agreement is created and scheduled to deliver through multiple plants. While creating outbound delivery flashes error message as " Delivery split due to different shipping points"
    Please help me out.
    Regards,
    Anbu

    Hi Naveen,
    I guess you would like to change the delivery adress in the BBP_DOC_CHANGE_BADI.
    Here you can identify the delivery adress (partner function 00000027) line item by the field P_GUID. This P_GUID in the partner table (ET_PARTNER-P_GUID) consists the GUID of the SC line item (ET_ITEM-GUID).
    When you know the line item GUID, you can find the SC line item number in the item table (ET_ITEM-NUMBER_INT) and you can see which is the first, second... line item of the SC.
    Regards,
    Peter

Maybe you are looking for

  • Exception EAccess Violation

    Hi. I was preparing for a delay claim presentation when an exception window popped up. Type: EAccessViolation Event Code: AVAA0-0633-5 Description: Access violation at address 00000000. Read of address 00000000 This is the first time I encountered th

  • Windows 7 and HP Color LaserJet 3600N

    HP does it best again.  No Windows 7 driver for Color LaserJet 3600n!   You can fill in the blanks...   However, using Windows 7 Professional, I was able to install the XP drivers.   Download the XP software and it will run in a virtual XP session. 

  • Problem  in using COLLECT statment

    Hi experts, getting problem in using COLLECT statement.  attaching my code below. LOOP AT it_final1 INTO wa_final1.      LOOP AT it_final INTO wa_final WHERE vagrp = wa_final1-vagrp AND verwmerkm = wa_final1-verwmerkm.        wa_final1-anzwertg = wa_

  • Not to display the document which are not due at the time of making the pay

    Hi, My user dont want to display the document which are not in due at the time of making the payment through F-53. For example: Vendor Code: 1001 has the open item as below: Due Date - 29.09.2009 Amount 50000 Due Date - 30.09.2009 Amount 10000 Due Da

  • NOKIA N97 MINI ANTIVIRUS

    CAN ANYBODY SUGGEST ABOUT ANTIVIRUS FOR NOKIA N97 MINI