Merge bug

I have a workbook with a Power Query merge.
I copied it to a different computer. I entered the wrong credential so the queries for the tables which feed the merge failed. I fixed the credential and now see the data into the two queries that feed the merge. And when I preview the merge the data is
present. But when I click apply, the sheet which receives the merge doesn't update and still shows an error. I had to remove the sheet ( which removed the merge ) and redo the merge.  Seems like a bug.

It does indeed. If you're able to recreate the situation, please use the "Send a Frown" feature against that workbook to report it.

Similar Messages

  • Data Merge bug

    I reported this as a bug and I'm curious if anyone else can recreate this problem:
    -Create an Excel file with the header of one column labeled 'table' and export as a CSV file.
    -Select the CSV file as the data source in the Data Merge pane.
    At this point, nothing happens for me. Changing the column name to anything else works as expected.

    For search indexing, this is the error that brought me here: The data source cannot be opened. Confirm that the file exists and that you have rights to open it, then choose the Select Data Source command again.
    hopefully this helps another poor soul who spent hours trying to figure out what is going wrong

  • EntityManager.merge bugged in hibernate??

    I found a very strange behaviour using Hibernate as JPA implementation.
    @Entity
    public class User {
         @Id
         @GeneratedValue
         private Long id;
         @Column(unique = true)
         private String name;
         @Column
         private String password;
         @ManyToMany(cascade = { CascadeType.ALL })
         @JoinTable(name = "u_f", joinColumns = { @JoinColumn(name = "u") }, inverseJoinColumns = { @JoinColumn(name = "f") })
         private Set<User> friends = new HashSet<User>();
         public User() {}
         public void addFriend(User friend) {
              friends.add(friend);
              From UserDao
    @Override
    public void startSession() {
         em = emf.createEntityManager();
    @Override
    public void closeSession() {
         em.close();
    @Override
    public User makePersistent(User entity) {
         try {
              em.getTransaction().begin();
              entity = em.merge(entity);
              em.getTransaction().commit();
              return entity;
         } finally {
              if (em.getTransaction().isActive())
                   em.getTransaction().rollback();
    }From test:
    UserDao userDao = new UserDao();
    userDao.startSession();
    User first = new User("gigi", "a");
    first = userDao.makePersistent(first);
    userDao.closeSession();
    userDao.startSession();
    User second = new User("kux", "a");
    User third = new User("qwe", "asd");
    first.setPassword("ffs");
    first.addFriend(second);
    first = userDao.makePersistent(first);
    first.addFriend(third);
    first = userDao.makePersistent(first);               
    userDao.closeSession();Now, what happens when running the test is that all 3 beans get added to the User table, but only User second is added as a friend of User first. This means that the second merge done on the same EntityManager on a different transaction doesn't merge the friends Set.
    Here is a snapshot of the database after runnig the code:
    User:
    1 gigi
    2 kux
    3 qwe
    u_f:
    1 2

    You don't need to call merge() when the entity is managed. You call merge() to update unmanaged entities.
    To do the update, do the following:
    1) start transaction
    2) make sure the Team is managed (select it)
    3) change property
    4) end transaction
    JPA will do the work of synchronizing the database state with the entity state for you.
    But regardless, the merge() call should still work. Post the Team entity code please, the problem may lie there.

  • [Patch 정보] TRACKING BUG FOR CUMULATIVE MLR#6 ON TOP OF BPEL PM 10.1.3.3.1

    최근에 출시된 BPEL PM 10.1.3.3.1의 통합패치입니다.
    아래는 readme.txt에 포함된 patch list입니다.
    # WARNING: Failure to carefully read and understand these requirements may
    # result in your applying a patch that can cause your Oracle Server to
    # malfunction, including interruption of service and/or loss of data.
    # If you do not meet all of the following requirements, please log an
    # iTAR, so that an Oracle Support Analyst may review your situation. The
    # Oracle analyst will help you determine if this patch is suitable for you
    # to apply to your system. We recommend that you avoid applying any
    # temporary patch unless directed by an Oracle Support Analyst who has
    # reviewed your system and determined that it is applicable.
    # Requirements:
    # - You must have located this patch via a Bug Database entry
    # and have the exact symptoms described in the bug entry.
    # - Your system configuration (Oracle Server version and patch
    # level, OS Version) must exactly match those in the bug
    # database entry - You must have NO OTHER PATCHES installed on
    # your Oracle Server since the latest patch set (or base release
    # x.y.z if you have no patch sets installed).
    # - [Oracle 9.0.4.1 & above] You must have Perl 5.00503 (or later)
    # installed under the ORACLE_HOME, or elsewhere within the host
    # environment.
    # Refer to the following link for details on Perl and OPatch:
    # http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=189489.1
    # If you do NOT meet these requirements, or are not certain that you meet
    # these requirements, please log an iTAR requesting assistance with this
    # patch and Support will make a determination about whether you should
    # apply this patch.
    # 10.1.3.3.1 Bundle Patch 6823628
    # DATE: March 14, 2008
    # Platform Patch for : Generic
    # Product Version # : 10.1.3.3.1
    # Product Patched : Oracle(R) SOA
    # Bugs Fixed by 10.1.3.3.1 Initial patch 6492514 :
    # Bug 5473225 - PATCH01GENESIS HOT UNABLE TO CATCH AN EXCEPTION DURING A
    # TRANSFORM
    # Bug 5699423 - PARTNERLINK PROPERTY THAT SET BPELXPROPERTY FUNCTION DOESN'T
    # WORK
    # Bug 5848272 - STATEFUL WEBSERVICES DEMO ON OTN DOES NOT WORK 10.1.3.1
    # Bug 5872799 - ANT DEPLOY BPEL TEST FAILS/RUNS ON DEFAULT DOMAIN NOT
    # SPECIFIED TARGET DOMAIN
    # Bug 5883401 - ALLOW A WAY TO CREATE EMPTY NODES - AND USE FOR REQUIRED
    # NODES
    # Bug 5919412 - SAMPLE DEMO BPEL PROCESSES MIMESERVICE MIMEREQUESTER AXIS
    # JAVA EXAMPLE ERROR
    # Bug 5924483 - ESB SHOULD SUPPORT SOAP EDNPOINT LOCATION DYNAMIC UDDI LOOKUP
    # Bug 5926809 - ORAPARSEESCAPEDXML XPATH EXPRESSION FAILED TO EXECUTE
    # FOTY0001 TYPE ERROR
    # Bug 5937320 - STRANGE BEHAVIOUR CALLING FROM BPEL TO BPEL GETTING
    # NULLPOINTEREXCEPTION.
    # Bug 5944641 - BPA BLUEPRINT NOT AVAIALBLE IN JDEVELOPER
    # Bug 5945059 - JAVA.LANG.NULLPOINTEREXCEPTION SENDING EMAILS WITH PAYLOADS
    # LARGER THAT 1MB
    # Bug 5962677 - WS RESPONSE IS EMPTY SOAP BODY IN ONE-WAY CALL
    # Bug 5963425 - WHEN THE OUTCOMES FOR A HT CHANGED & IMPORTED - UPDATE
    # CONNECTION ROLES IN BPEL
    # Bug 5964097 - AQ ADAPTER DEPLOYMENT CAUSES OPMN TO PERFORM A FORCEFUL
    # SHUTDOWN IN SOA
    # Bug 5971534 - CANNOT GRANT USER TASK VIEWS TO GROUPS, ONLY TO USERS.
    # Bug 5989367 - REFER TO SR 6252219.993 BPEL 10.1.3 ONLY COPIES IN ASSIGN,
    # IN 10.1.2 IT CREATES
    # Bug 5989527 - ENHANCEMENT WARNING SHOULD BE GIVEN UPON UPLOAD IF BPEL
    # PROCESS IS OPEN IN ARIS
    # Bug 5997936 - ESB FAULT DOES NOT GET PROPAGATED TO BPEL
    # Bug 6000575 - PERF NEED ESB PURGE SCRIPT TO PURGE BY DATE AND PROCESS
    # Bug 6001796 - POSTING OF DATE RECEIVED FROM XML GATEWAY TO BPEL FAILED IN
    # ESB
    # Bug 6005407 - BPEL PROCESS DOESN'T PROPOGATE FAULT THROWN BY BPEL
    # SUB-PROCESS
    # Bug 6017846 - MIMETYPE OF EMAIL NOTIFICATION IS NOT SET THROUGH HUMAN TASK
    # Bug 6027734 - DECISION SERVICE IMPORT - LOCATING DECISION SERVICE IN .DECS
    # FILE IMPROPER
    # Bug 6028985 - EXCEEDED MAXIMUM NUMBER OF SUBSCRIBERS FOR QUEUE
    # ORAESB.ESB_CONTROL
    # Bug 6041508 - CREATING/UPDATING DVM CAUSE EXCEPTION
    # Bug 6053708 - FTP ADAPTER DOES NOT SUPPORT ENCRYPTED PASSWORD IN
    # OC4J-RA.XML
    # Bug 6054034 - INDEX4,INDEX5 AND INDEX6 CANNOT BE USED IN BPEL CONSOLE
    # Bug 6068801 - BACKPORT OF BPEL ON WEBLOGIC - VERSION 10.1.3.3
    # Bug 6070991 - HT EXPORT DOES NOT EXPORT PARAMETERS, ALLOW PARTICIPANTS TO
    # INVITE OTHERS
    # Bug 6071001 - WSIF HTTP BINDING NOT WORKING FROM ESB
    # Bug 6073311 - STRESS SCOPE NOT FOUND ON CALLBACK - WRONG (DUPE)
    # SUBSCRIPTION IN TABLE
    # Bug 6081070 - JMS ADAPTER REJECTION HANDLER CREATE 0 BYTE FILES
    # Bug 6083419 - DECISION SERVICE SCOPE NEED TO HAVE A SPECIAL INDICATOR
    # Bug 6085799 - HUMAN TASK ADDED IN SCOPE IN JDEV IS NOT UPDATED TO BPA
    # SERVER
    # Bug 6085933 - EXPORT AND EXPLORE SHOULD USE USER LANGUAGE AND NOT ENGLISH
    # ALWAYS
    # Bug 6086281 - STRING INDEX OUT OF RANGE ERROR FOR COBOL COPYBOOK WITH PIC
    # CLAUSE HAVING S
    # Bug 6086453 - DOMAINS CREATED IN A CLUSTER GETS NOT PROPAGATED TO NEW OR
    # EXISTING NODES
    # Bug 6087484 - MULTIPLE HEADER SETTING CAUSES ESB EXCEPTION
    # Bug 6087645 - ESB SHOULD ALLOW USER PICK RUNTIME PROTOCOL (HTTP/HTTPS)
    # Bug 6110231 - TRANSLATION NOT BASED ON MQ CCSID CHARSET
    # Bug 6120226 - BPEL IS NOT SETTING THE APPS CONTEXT CORRECTLY
    # Bug 6120323 - COMPLETIONPERSISTPOLICY ON DOMAIN LEVEL HAS DISAPPEARED
    # Bug 6125184 - ESB JMS SESSION ROLLBACK ORACLE.JMS.AQJMSEXCEPTION
    # Bug 6127824 - [AIA2.0] CURRENT XREF IMPLEMENTATION IS MISSING REQUIRED
    # INDEXES ON XREF SCHEMA
    # Bug 6128247 - HTTPCONNECTOR POST() METHOD SHOULD RAISE EXCEPTION FOR ALL
    # STATUS CODES EXCEPT 2
    # Bug 6131159 - ENABLE USERS TO CHOOSE XSD WHEN CREATING A BPEL PROCESS FROM
    # BLUE PRINT
    # Bug 6132141 - PROCESS_DEFAULT TABLE STILL CONTAINS INFORMATION FROM
    # UNDEPLOYED PROCESSES
    # Bug 6133190 - ENABLING ESB CONSOLE HTTP/S IS MAKING THE CONSOLE TO COME UP
    # BLANK.
    # Bug 6139681 - BPEL WSDL LINK IN CLUSTERED RUNTIME POINTS TO A SINGLE NODE
    # Bug 6141259 - BASICHEADERS NOT PUTTING WWW-AUTHENTICATE HEADERS FOR HTTP
    # BINDING IN BPEL
    # Bug 6148021 - BPEL NATIVE SCHEMA FOR COBOL COPYBOOK WITH IMPLIED DECIMAL
    # LOSES DIGIT IN OUTPUT
    # Bug 6149672 - XOR DATA - CONDITION EXPRESSION SPECIFICATION IS NOT
    # INTUITIVE IN BPMN MODELS
    # Bug 6152830 - LOSING CONDITIONAL EXPRESSIONS CREATED IN JDEV UPON MERGE
    # Bug 6158128 - BASICHEADERS NOT PUTTING WWW-AUTHENTICATE HEADERS FOR HTTP
    # BINDING
    # Bug 6166991 - WHEN STARTING SOA SUITE,, PROCESSES FAIL DUE TO UNDEFINED
    # WSDL
    # Bug 6168226 - LOCATION-RESOLVER EXCEPTION THROWN IN OPMN LOGS
    # Bug 6187883 - CHANGES FOR BPEL RELEASE ON JBOSS- VERSION 10.1.3.3
    # Bug 6206148 - [AIA2.0] NEW FUNCTION REQUEST, XREFLOOKUPPOPULATEDCOLUMNS()
    # Bug 6210481 - BPEL PROCESS WORKS INCORRECTLY WHEN AN ACTIVITY HAS MULTIPLE
    # TRANSITIONCONDITION
    # Bug 6240028 - WEBSERVICE THAT DOES NOT CHALLENGE FOR BASIC CREDENTIALS
    # CANNOT BE INVOKED
    # Bug 6257116 - MULTIPLE HEADER SETTING CAUSES ESB EXCEPTION
    # Bug 6258925 - MESSAGE RECEIVED BY THE TARGET ENDPOINT VIA HTTP POST IS
    # MISSING THE XML HEADER
    # Bug 6259686 - TOO MANY UNNECESSARY WORKFLOW E-MAIL NOTIFICATIONS GENERATED
    # Bug 6267726 - 10.1.3.3 ORACLE APPLICATIONS ADAPTER - NOT ABLE TO CAPTURE
    # BUSINESS EVENT
    # Bug 6272427 - WEBSPHERE BPEL FAILS FOR DATA RETRIEVAL OF SIZE 500+ KB
    # Bug 6276995 - MERGE SCOPE NAME IS NOT UPDATED WHEN CHANGED IN THE SERVER
    # Bug 6280570 - XPATH EXPRESSION ERROR IN MEDIATOR FOR ASSIGNING USER-DEFINED
    # CONTEXT VALUES
    # Bug 6282339 - RETRYCOUNT DOES NOT WORK PROPERLY
    # Bug 6311039 - ONE RECORD IS INSERTED TO SYNC_STORE IF
    # COMPLETIONPERSISTPOLICY SET TO FAULTED
    # Bug 6311809 - [AIA2.0] NON-RETRYABLE ERRORS ARE NOT POSTED ON ESB_ERROR
    # TOPIC
    # Bug 6314784 - THE PRIORITY DEFINED IN THE BPA SUITE IS NOT TRANSFERRED TO
    # THE JDEV CORRECTLY
    # Bug 6314982 - THREADPOOL RACE CONDITION IN ADAPTER INITIALIZATION MESSAGES
    # NOT PROCESSED
    # Bug 6315104 - (SET)CLASSNAME MISSING IN TSENSOR JAXB OBJECTS
    # Bug 6316554 - CONSUME FUNCTIONALITY OF JMS ADAPTER FOR BEA WEBLOGIC DOES
    # NOT WORK
    # Bug 6316950 - FILEADAPTER HARPER ENHANCEMENTS SYNC WRITE AND CHUNKED
    # INTERACTION SPEC
    # Bug 6317398 - THE ICON FOR COMPUTING DIFFERENCE IS MISSING IN JDEV REFRESH
    # FROM SERVER DIALOG
    # Bug 6320506 - IMPORT FAILS WHEN THERE IS AN UNNAMED CASE
    # Bug 6321011 - CANNOT PROCESS 0 BYTE FILE USING FTP ADAPTER
    # Bug 6325749 - TRACKING BUG FOR TRACKING ADDITIONAL CHANGES TO BUG #6032044
    # Bug 6328584 - NEED A NEW XPATH EXPRESSION TO GET ATTACHMENT CONTENT VIA
    # SOAP INVOKATION
    # Bug 6333788 - COLLAPSING OF CONSECUTIVE ASSIGN TASKS BREAKS BAM SENSOR
    # Bug 6335773 - BUILD.XML CONTAINS DO NOT EDIT .. - WHILE <CUSTOMIZE> TASK
    # MUST BE IN <BPELC>
    # Bug 6335805 - AQ ADAPTER OUTBOUND DOESN'T RECONNECT AFTER FAILURE
    # Bug 6335822 - [AIA2.0] PSRPERFESB - RUNTIME DVM PERFORMANCE OVERHEAD IN ABS
    # USE CASE
    # Bug 6339126 - CHECKPOINT BPEL JAVA METHOD DOESN'T WORK IN BPEL 10.1.3.3
    # Bug 6342899 - OUTLINECHANGE.XML NOT UPDATE WITH ACTIVITY FROM NEW BRANCH
    # Bug 6343299 - ESB CONCRETE WSDL NAMESPACE SHOULD BE DIFFERENT FROM IMPORTED
    # WSDL NAMESPACE
    # Bug 6372741 - DEHYDRATION DATABASE KEEPS GROWING IN 10.1.3.3
    # Bug 6401295 - NXSD SHOULD SUPPORT ESCAPING THE TERMINATED/QUOTED/SURROUNDED
    # DELIMITERS
    # Bug 6458691 - DIST DIRECTORY FOR 10.1.3.3.1 NEEDS UPDATE
    # Bug 6461516 - BPEL CONSOLE CHANGES FOR DISPLAYING RELEASE 10.1.3.3.1
    # Bug 6470742 - CHANGE THE VERSION NUMBER AND BUILD INFO IN ABOUT DIALOG IN
    # ESB
    # BUG ADDED IN MLR#1, 6671813 :
    # Bug 6494921 - ORABPEL-02154 IF LONG DOMAIN AND SUITECASE NAMES IN USE
    # BUGS ADDED IN MLR#2, 6671831 :
    # Bug 6456519 - ERROR IN BPEL CONSOLE THREADS TAB:SERVLETEXCEPTION CANNOT GET
    # DISPATCHER TRACE
    # Bug 6354719 - WHICH JGROUP CONFIGURATION PARAMETER IMPACTS BPEL CLUSTER
    # ACTIVITY
    # Bug 6216169 - SCOPE NOT FOUND ERROR WHILE DELIVERING EXPIRATION MESSAGE OF
    # ONALARM
    # Bug 6395060 - ORA-01704 ON INSERTING A FAULTED INVOKE ACTIVITY_SENSOR
    # Bug 6501312 - DEHYDRATION DATABASE KEEPS GROWING IN 10.1.3.3 #2
    # Bug 6601020 - SEARCHBASE WHICH INCLUDES PARENTHESIS IN THE NAMES DOES NOT
    # WORK
    # Bug 6182023 - WAIT ACTIVITY FAILS TO CONTINUE IN CLUSTER WHEN PROCESSING
    # NODE GOES DOWN
    # BUGS ADDED IN MLR#3, 6723162 :
    # Bug 6725374 - INSTANCE NOT FOUND IN DATASOURCE
    # Bug 4964824 - TIMED OUT IF SET CORRELATIONSET INITIATE YES IN REPLY
    # ACTIVITY
    # Bug 6443218 - [AIA2.0]BPEL PROCESS THAT REPLIES A CAUGHT FAULT AND THEN
    # RETHROWS IT IS STUCK
    # Bug 6235180 - BPPEL XPATH FUNCTION XP20 CURRENT-DATETIME() IS RETURNING AN
    # INCORRET TIME
    # Bug 6011665 - BPEL RESTART CAUSES ORABPEL-08003 FAILED TO READ WSDL
    # Bug 6731179 - INCREASED REQUESTS CAUSE OUTOFMEMORY ERRORS IN OC4J_SOA WHICH
    # REQUIRES A RESTART
    # Bug 6745591 - SYNC PROCESS <REPLY> FOLLOWED BY <THROW> CASE CAUSING
    # OUTOFMEMORY ERRORS
    # Bug 6396308 - UNABLE TO SEARCH FOR HUMAN TASK THAT INCLUDES TASK HISTORY
    # FROM PREVIOUS TASK
    # Bug 6455812 - DIRECT INVOCATION FROM ESB ROUTING SERVICE FAILS WHEN CALLED
    # BPEL PROCESS
    # Bug 6273370 - ESBLISTENERIMPL.ONFATALERROR GENERATING NPE ON CUSTOM ADAPTER
    # Bug 6030243 - WORKFLOW NOTIFICATIONS FAILING WITHOUT BPELADMIN USER
    # Bug 6473280 - INVOKING A .NET 3.0 SOAP SERVICE EXPOSED BY A ESB ENDPOINT
    # GIVES A NPE
    # BUGS ADDED IN MLR#4, 6748706 :
    # Bug 6336442 - RESETTING ESB REPOSITORY DOES NOT CLEAR DB SLIDE REPOSITORY
    # Bug 6316613 - MIDPROCESS ACTIVATION AGENT DOES NOT ACTIVATED FOR RETIRED
    # BPEL PROCESS
    # Bug 6368420 - SYSTEM IS NOT ASSIGNING TASK FOR REAPPROVAL AFTER REQUEST
    # MORE INFO SUBMITTED
    # Bug 6133670 - JDEV: UNABLE TO CREATE AN INTEGRATION SERVER CONNETION WHEN
    # ESB IS ON HTTPS
    # Bug 6681055 - TEXT ATTACHMENT CONTENT IS CORRUPTED
    # Bug 6638648 - REQUEST HEADERS ARE NOT PASSED THROUGH TO THE OUTBOUND HEADER
    # Bug 5521385 - [HA]PATCH01:ESB WILL LOSE TRACKING DATA WHEN JMS PROVIDER IS
    # DOWN
    # Bug 6759068 - WORKLIST APPLICATION PERFORMANCE DEGRADATION W/ SSL ENABLED
    # FOR BPEL TO OVD
    # BUGS ADDED IN MLR#5, 6782254 :
    # Bug 6502310 - AUTOMATED RETRY ON FAILED INVOKE WITH CORRELATIONSET INIT
    # FAILS
    # Bug 6454795 - FAULT POLICY CHANGE NEEDS RESTART OF BPEL SERVER
    # Bug 6732064 - FAILED TO READ WSDL ERROR ON THE CALLBACK ON RESTARTING BPEL
    # OC4J CONTAINER
    # Bug 6694313 - ZERO BYTE FILE WHEN REJECTEDMESSAGEHANDLERS FAILS
    # Bug 6686528 - LINK IN APPLICATION.XML FILES CHANGED TO HARD LINKS WHEN MORE
    # THAN 1 HT PRESENT
    # Bug 6083024 - TEXT AND HTML DOC THAT RECEIVED AS ATTACHMENTS WERE EITHER
    # BLANK OR GARBLED
    # Bug 6638648 - REQUEST HEADERS ARE NOT PASSED THROUGH TO THE OUTBOUND HEADER
    # Bug 6267726 - 10.1.3.3 ORACLE APPLICATIONS ADAPTER - NOT ABLE TO CAPTURE
    # BUSINESS EVENT
    # Bug 6774981 - NON-RETRYABLE ERRORS ARE NOT POSTED ON ESB_ERROR TOPIC
    # Bug 6789177 - SFTP ADAPTER DOES NOT SUPPORT RENAMING FILES
    # Bug 6809593 - BPEL UPGRADE TO 10.1.3.3.1 WITH ESB CALLS FAILS DUE TO
    # CACHING OF PLNK - SERVICE
    # BUGS ADDED IN MLR#6, 6823628 :
    # Bug 6412909 - <BPELX:RENAME> DOES NOT ADD XMLNS DECLARATION AUTOMATICALLY
    # Bug 6753116 - OUTPUT FROM HUMAN TASK IS NOT IS NOT CONSISTENT WITH
    # SCHEMA
    # ORDERING
    # Bug 6832205 - BAD VERIFICATIONSERVICE PERFORMANCE IF LDAP SERVICE HAS HUGE
    # DATA
    # Bug 6189268 - CALLING BPEL PROCESS VIA SOAP FROM ESB FAILS WITH
    # NAMENOTFOUNDEXCEPTION
    # Bug 6834402 - JMS ADAPTER IMPROPERLY CASTS XAQUEUESESSION TO QUEUESESSION
    # Bug 6073117 - TASK SERVICE DOESN'T RENDER THE TASK ACTIONS
    # Bug 6054263 - REUSING SOAP WSDL IN RS CAUSES SOAP ACTION'S NS TO BE
    # STRIPPED
    # AWAY
    # Bug 6489703 - ESB: NUMBER OF LISTENERS > 1 GIVES JMS EXCEPTION UNDER STRESS
    # Bug 5679542 - FTP ADAPTER: COULD NOT PARSE TIME:
    # JAVA.LANG.STRINGINDEXOUTOFBOUNDSEXCEPTION
    # Bug 6770198 - AQ ACTIVATIONINSTANCES >1 DOESN'T WORK IN ESB
    # Bug 6798779 - ESB ROUTING RULES CORRUPTED ON RE-REGISTERING WITH ROUTING
    # ORDER
    # IN WSDL CHANGED
    # Bug 6617974 - BACKPORT REQUEST FOR MOVING FILES FUNCTION OF FTP ADAPTER
    # Bug 6705707 - VALIDATION ON ESB CAN'T HANDLE NESTED SCHEMAS
    # Bug 6414848 - FTP ADAPTER ARCHIVE FILENAME FOR BPEL IS BEING SCRAMBLED
    # AFTER
    # THE 10.1.3.3 UPGR
    # Bug 5990764 - INFORMATION ARE LOST WHEN BPEL PROCESS IS POLLING FOR MAILS
    # WITH
    # ATTACHEMENTS
    # Bug 6802070 - ORA-12899 SUBSCRIBER_ID/RES_SUBSCRIBER COLUMN SMALL FOR LONG
    # DOMAIN AND PROCESS
    # Bug 6753524 - WRONG SERVICE ENDPOINT OPEN WHEN TEST WEB SERVICE OF ESB
    # Bug 6086434 - PROBLEM IN BPEL FILE ADAPTER WHILE READING A FIXED LENGTH
    # FILE
    # Bug 6823374 - BPEL 10.1.3.3.1 BAM SENSOR ACTION FAILS WITH BAM 11
    # Bug 6819677 - HTTS STATUS 202 RETURNED INSTEAD OF SOAP FAULT
    # Bug 6853301 - MQ ADAPTER REJECTED MESSAGES IS NOT REMOVED FROM THE RECOVERY
    # QUEUE
    # Bug 6847200 - 10.1.3.3.1 PATCH (#6748706) HAS STOPPED FTP ADAPTER POLLING
    # IN
    # SFTP MODE
    # Bug 6895795 - AQ OUTBOUND DOESN'T WORK WITH MLR#6
    업무에 참고하시기 바랍니다.

    David,
    You are right, theer are some changes incorporated in the latest MLR # 16 on the configurations files and on the dehydration store metrics(such as performance, fields,..).
    However, I would not suggest to continue working on olite, even for Development/Test purposes as you might get stuck with strange errors...and the only solution would be to re-install SOA Suite if your olite gets corrupted. There might be ways to gets your olite back to position, but trust me..its not so simple.
    Also, when you develop and stress test all your testcase scenarios in an TEST Adv installation, its simple to mimic the same in actual production box, as you exactly know its behavior.
    So, go for a brand new SOA 10.1.3.4 MLR # 5 (or) 10.1.3.3.1 MLR # 16 SOA Suite Advanced installation with Oracle DB 10.2.0.3 as its dehydration store.
    Hope this helps!
    Cheers
    Anirudh Pucha

  • Upgrading sap business one version 800232 is not allowed

    Hi All
    I got this error when I tried to run an upgrade from SBO 2007A PL 42 to SBO 8.8 PL3.
    Any suggestions.
    Regards
    Bongani

    Dear Bongani,
    i found something for this Error i hope it help:
    Zusammenfassung
    Symptom
    In the connection setting step or database selection step, the following error dialog appears: "Upgrade SAP Business One from version xxx is not allowed. Contact your SAP business partner for support."
    Other terms
    Upgrade Wizard, Upgrade Path, Restriction
    Reason and Prerequisites
    Application error
    Due to the nature of development cycles, it takes some time for SAP Business One 8.8 to merge bug fixes from latest released install base patches. As a result, some upgrade paths are restricted in order to avoid data loss/duplicate upgrade in certain cases. For example: a bug fix is applied on 2007 A SP01 PL07 and merged with 8.8 PL05. If the database in 2007 A SP01 PL07 is upgraded to 8.8 PL04, the fix will be lost. In addition, there is a risk of data loss if the fix involves some metadata change. So 2007 A SP01 PL07 can only be merged with version 8.8 PL05 and higher.
    Solution
    SAP intends to provide a patch or patches in order to solve the problem described.
    The section Reference to Related Notes below will list the specific patches once they become available. The corresponding Info file of the patches in SAP Service Marketplace will also show the SAP Note number.
    Please note that these references can only be set at patch release date.
    SAP will deliver patches only for selected releases at its own discretion, based on the business impact and the complexity of the implementation.
    In addition to the bug fixes listed in this SAP Note, this patch contains also the bug fixes from:
    SAP Business One 2007 A SP01 PL06,
    SAP Business One 2007 B SP00 PL14.
    For more details, please see the SAP Notes under the "Related Notes" tab.
    IMPORTANT: Please note that if you are on a higher patch than the 2007A/2007B patch levels listed above and upgrades to 8.8, this may result in unexpected issues and potential data loss as the upgrade path is not supported yet.
    Best regards,
    Indira

  • 8.8 ver Upgrade error

    Dear All
    We are using SAP Business one 2007B PL08,now we have upgareded to 8.8 PL00.So when we try to login to old DB it is showing message "you cannot upgrade company database from SAP B1 client use upgradation CD with administartor for upgrade.
    SO wht is the solution,shall ined to upgrade my PL00 to higher?
    Please provide solution
    Regards
    M Auditya

    Here is some info from NOTE 1398527. Maybe this might help
    Some versions cannot be upgraded by upgrade wizard
    Symptom
    In the connection setting step or database selection step, the followingerror dialog appears: "Upgrade SAP Business One from version xxx is not allowed. Contact your SAP business partner for support."
    Other terms
    Upgrade Wizard, Upgrade Path, Restriction
    Reason and Prerequisites
    Application error
    Due to the nature of development cycles, it takes some time for SAP Business One 8.8 to merge bug fixes from latest released install base patches. As a result, some upgrade paths are restricted in order to avoid data loss/duplicate upgrade in certain cases. For example: a bug fix is applied on 2007 A SP01 PL07 and merged with 8.8 PL05. If the database in 2007 A SP01 PL07 is upgraded to 8.8 PL04, the fix will be lost. In addition, there is a risk of data loss if the fix involves some metadata change. So 2007 A SP01 PL07 can only be merged with version 8.8 PL05 and higher.
    Solution
    SAP intends to provide a patch or patches in order to solve the problem described.
    The section Reference to Related Notes below will list the specific patches once they become available. The corresponding Info file of the patches in SAP Service Marketplace will also show the SAP Note number.
    Please note that these references can only be set at patch release date.
    SAP will deliver patches only for selected releases at its own discretion, based on the business impact and the complexity of the implementation.

  • [svn:fx-trunk] 8679: These are Asdoc edit from 3.x rev 8623.

    Revision: 8679
    Author:   [email protected]
    Date:     2009-07-20 06:23:31 -0700 (Mon, 20 Jul 2009)
    Log Message:
    These are Asdoc edit from 3.x rev 8623.  I somehow missed committing these when they were supposed to be committed during my previous merge.
    bug: no
    qa: no
    doc: no
    checkintests: pass
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/Consumer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MessageResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MultiTopicConsumer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MultiTopicProducer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/Producer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/AMFChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/HTTPChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/PollingChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureAMFChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureHTTPChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingAMFChanne l.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingHTTPChann el.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingAMFChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingConnectionHandl er.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingHTTPChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/config/ConfigMap.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/HTTPRequestMessage.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractInvoker.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractOperation.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractService.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AsyncResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AsyncToken.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/CallResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/IResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/Responder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/WSDLLoadEvent.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/XMLLoadEvent.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/AbstractOperation.as
    Property Changed:
        flex/sdk/trunk/

    Revision: 8679
    Author:   [email protected]
    Date:     2009-07-20 06:23:31 -0700 (Mon, 20 Jul 2009)
    Log Message:
    These are Asdoc edit from 3.x rev 8623.  I somehow missed committing these when they were supposed to be committed during my previous merge.
    bug: no
    qa: no
    doc: no
    checkintests: pass
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/Consumer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MessageResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MultiTopicConsumer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MultiTopicProducer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/Producer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/AMFChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/HTTPChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/PollingChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureAMFChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureHTTPChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingAMFChanne l.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingHTTPChann el.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingAMFChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingConnectionHandl er.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingHTTPChannel.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/config/ConfigMap.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/HTTPRequestMessage.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractInvoker.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractOperation.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractService.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AsyncResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AsyncToken.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/CallResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/IResponder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/Responder.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/WSDLLoadEvent.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/XMLLoadEvent.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/AbstractOperation.as
    Property Changed:
        flex/sdk/trunk/

  • What is the difference between requisite emerge and CCM

    hai friends
    what is the difference between requisite emerge and CCM
    regards
    VinayKrishna

    Hi,
    E merger bugs eye and CCM are two different catalog applications in which SAP does not support bugseye as of now.
    Best regards,
    Sridhar.

  • CS6.0.2 Merged clip bugs

    Having struggled with my typical editing style using dual sync sound i've been able to replicate a few bugs, by listing them here my hope is to get other editors using "merged clips" with dual sync sound can find a solution around them.  This has come up a few times in the forums but hasn't specifically addressed the bugs.
    http://forums.adobe.com/message/4503977
    http://forums.adobe.com/message/4676617#4676617
    These bugs are with using Merged clips.
    1. using the match frame command from a clip in a sequence and then using a replace edit from source monitor on another clip, matches frame on video, but sync is off on the audio.  Using match frame on the newly replaced clip does reconnect to the correct timecode with the audio in sync, however the audio and video in and out points do not line up with the matched frame clip.  So you can't just use the overwrite edit with the matched framed merged clip.  Once you've matched frame with the incorrectly referenced audio, you can not use the replace edit command again, it gets grayed out.
    2. This same bug occurs when find an merged clip in the browser, creating in and out points and using the replace clip command from bin. The audio is out of sync and replace edit command becomes grayed out.
    3. Once the mismatch in the audio sync has occurred from the replace with match frame, the merged clip in the bin when loaded into the source monitor shows the inpoint and out point of the video, and a separate in and out point of the audio, which is not aligned properly like it was when it was originally created. Only when the in and out point of the audio and video are manually changed does the merged clip become a unified clip again. (one in and out point referencing both audio and video)
    if anyone else can replicate this bugs it would be appreciated.
    My clips have been manually synced in premiere, would be interested to see if pluraleyes' behavior is any different, but I don't have access to pluraleyes for Premiere if anyone can test.
    CS6.0.2
    MacPro 4.1 OSX 10.8.2
    Nvidia 4000 for Mac
    Cuda 5.0.37
    GPU Driver 1.3.4.0
    Matrox MXO2 mini with Max

    Unfortunately this is not a spanned clip problem with Adobe or Panasonic. This issue does come up from time to time.
    Be sure when you pull the card from your camcorder, you LOCK IT immediately. Then it becomes impossible to change anything on the card purposely or inadvertantly (and as you are aware, changing anything - structure, file names, ANYTHING - on the card will blow the whole operation, so locking it is perfect). Also, sometimes Mac users have problems when they fail to lock their cards, because Mac OS immediately starts writing files to the card if it's not locked.
    When you're using the Media Browser in PPro, be certain that you are viewing the clips in AVCHD mode (there's a dropdown option for this right there in the Media Browser). If you're importing individual clips from a single continuous recording, you're NOT in AVCHD mode, and this will always cause the problem you are describing.
    I don't mean to lay this out as "you're doing it wrong" but unfortunately this is all very well documented at this point, and whenever there is a problem with spanned clips, it is 100% of the time due to a user that renamed something, moved files, or otherwise didn't follow the complete rules of AVCHD management. I don't normally use a term like 100% (tend to prefer 99.9%) but I say 100% because it is absolute in this case.

  • Merged clips - are they all bugs or is there something wrong with my system?

    I have to use merged clips to sync video and audio because making every clip a sequence is too cumbersome and doesn't give me thumbnails to help choose my shots. Apparently, merged clips are very buggy. I can't use colored markers because they don't get saved on merged clips. I can't use match frame on merged clips because they don't find the correct frame. I can't set a poster frame on a merged clip except with the "in" marker. Are all those problems bugs, or is there something wrong with my specific system. I trashed preferences to fix another problem unrelated to merged clips, but that didn't solve any of the clip problems.

    I don't believe there's anything wrong with your system.

  • Preview bug - merging pdfs inserts wrong file

    I have consistently been able to reproduce this bug. I often merge PDFs using Preview, by dragging a file from the Finder to Preview's thumbnail sidebar open to the document to which I am merging.
    And what happens is that when I do that, the file that actually gets inserted is a file that I had previously done that operation with.
    In other words:
    I want to merge file A with file B, so I open file B with Preview, ensuring the thumbnail sidebar is visible. I drag file A from the Finder and drop it on top of file B's thumbnail. Hey Presto, the files are merged, and I save and close, and then delete file A from the Finder.
    I then go to merge file C with file D. Repeating the process, when I drop file C from the Finder to the Preview sidebar, file A is what actually gets inserted into file D.
    It's like it's cached and doesn't get overwritten by file C during the second process.

    I haven't tried to reproduce the issue, but what happens if you quit and relaunch Preview before doing the second merge?

  • Merge two full-screened safari windows' bug under lion

    Hi there,
    After installed lion, i found an obviously bug in safari.
    1. Open safari, enter full-screen mode.
    2. Creat a new safari window (not a new tab), then it will moved into a other full-screen automaticlly.
    3. Click in menu bar : window>merge all windows.
    4. And here you go, two widows will be merged into one full-screen without the 'quit full-screen mode' buttom, and the other full-screen 'desktop' will be blank with only background. And the mission control died also XD

    exactly, see~

  • Bug - SQL Developer 3.0.04 SVN Merge

    Hello.
    I've found a bug when trying to merge files.
    The problem occurred when there is a conflict on file content and an update on properties.
    The SVN plugin prepares merge (diff) files but the GUI shows that the file is MERGED instead of CONFLICTED, and there is no way to enter the resolve conflicts on that file.
    Example log from SVN:
    --- Merging r19952 through r20348 into D:/test_sqlDev_svn/us10591/sql/AAA.sql
    CG D:/test_sqlDev_svn/us10591/sql/AAA.sql
    C -There is a conflict on file content
    G - Properties were merged successfully without conflicts
    If there is a conflict during merge but properties of file have not changed then everything works fine.
    Can you please fix this bug as it causes the usage of SQL Developer SVN features unusable our my environment.
    Kind Regards
    Jacek Gębal
    Edited by: user2242149 on 2011-11-25 07:21
    Edited by: user2242149 on 2011-11-25 07:27

    bump

  • Bug: Front Panel objects relative position change when placing merge VI onto Block Diagram

    I've posted a bug report on LAVA, here:
    http://forums.lavag.org/Front-Panel-objects-relati​ve-position-change-when-placing-merge-VI-onto-Bloc​...
    If someone at NI can reproduce, can I please get a CAR #?
    Thanks,
    -Jim
    Solved!
    Go to Solution.

    Donovan B wrote:
    Hi Jim,
    After my previous post, I also saw this behavior, so I decided to do another test.  If there are no decorations in the VI set to “Merge VI” (“Place VI Contents” for LabVIEW 8.5 and later) the controls and indicators are still not selected when dropping the VI from the Functions palette.  I checked this behavior back to LabVIEW 7.1 and it is consistent throughout that controls and indicators are not selected.  (Consequently, so is the fact that when decorations are present they don’t maintain the relative position).
    I am not sure if this would be better suited as a CAR or product suggestion since it has been this way that long, but it does not appear to be related to the fact that decorations are present in the Merge VI.  It does seem strange that the decorations are selected though.  Looks like the best way to work around this is to drop the VI from the Controls palette.  Hopefully, it’s not too much of a hassle.
    Hi  Donovan,
    Thanks for checking in.
    >  I checked this behavior back to LabVIEW 7.1 and it
    is consistent throughout that controls and indicators are not
    selected.  (Consequently, so is the fact that when decorations are
    present they don’t maintain the relative position).
    This just means that not many people use this feature.  However, now that VIPM Professional makes it so easy to edit the palettes, I'm sure that others will start complaining that this doesn't work as they expect.
    > I am not sure if this would be better suited as a CAR or product suggestion
    since it has been this way that long, but it does not appear to be
    related to the fact that decorations are present in the Merge VI.
     Just look up the functional specifications for this feature and see if all objects are supposed to be selected.
    But seriously, is there a reason that only the FP decorations are selected?  Surely this would be documented somewhere, if there was a good reason for this current (IMO, buggy) behavior.
    > It
    does seem strange that the decorations are selected though.  Looks like
    the best way to work around this is to drop the VI from the Controls
    palette.  Hopefully, it’s not too much of a hassle.
    That's not a reasonably work-around, IMO.  It doesn't make sense to drop Block Diagram components onto the Front Panel.  For example, this bug affects the JKI State Machine.  It doesn't make sense to drop a State Machine onto the Front Panel.
    So, I'd file it as a CAR/bug, and then wait to see how LV R&D feels about it.  If they can find some valid reason for why Controls and Indicators shouldn't be selected, then that's fine (and hopefully someone will explain it to me).
    Thanks,
    -Jim

  • Bug in merging Pages document with Numbers

    I am a teacher, using a Numbers spreadsheet as a gradebook.  It has multiple sheets, and some sheets have multiple tables.  I created Pages documents that merge to the spreadsheet so that I can print "reports" for each student showing his/her grades.  The first time I merge, everything works fine.  If I change a cell in the spreadsheet (and save it) and merge again, the merged document sometimes doesn't "get the message" and still has the old data in it.  If I copy the table I'm merging to, paste it into a new Numbers document, and merge to that, it works fine.  If I point the merge document back to the original table in the original Numbers document, it shows the old data again.
    Any thoughts on this baffling bug?

    Have you tried closing and reopening both the Numbers and Pages documents before the merge?
    Peter

Maybe you are looking for

  • [EJB:010112] - error with WLI8.1 Event Generator for foreign JMS/MQ provider

    I'm getting following error in weblogic server log when starting a JMS Event generator to a foreign JMS(MQ5.3) Queue. <May 4, 2004 4:44:35 PM PDT> <Warning> <EJB> <BEA-010096> <The Message-Driven EJ B: mqQueueEventGen is unable to connect to the JMS

  • Xrandr dual monitors not displaying correctly.

    When I use xrandr to try and run a dual monitor setup instead of having them mirror the screen turns into a mess of pixels. The mouse behaves correctly but I can no longer see windows or anything like that. I am using the radeon driver and OpenBox. A

  • I am trying to place a file typed in Japanese in to Indesign CS2...

    Hello, I am trying to place a file typed in Japanese in to an Indesign CS2 page.  The original text is a Microsoft Word file. When it is saved as a .pdf, I am not able to do anything with it. I use a MAC running on Tiger 10.4.11. I need it for an ins

  • IPhoto - storage or just referencing?

    It seems that all physical manipulation of photos, creating of new albums etc had to be done in the Photo App, not iPhoto.  No problem with that. But does that mean that iPhoto is just a reference to the photos that are stored on the iPad?  Surely it

  • Referring to cell for  Custom Formuale in WEBI

    Hi, I have the data some thing like this Region     Rev APJ          10 EMEA       50 Now I want to create a custom formulae like I want to take 50% of APJ revenue and 20% of EMEA value . In excel the I can point to the APJ revenue cell that is  (100