Merged RPD not working

Hi Folks
I had 4 different RPD's in four different machines. I merged all four of them using the Merge option in the admin tool, into one machine as the requirement had changed. But when I upload the merged rpd in the enterprise manager I am not getting the reports in the OBIEE dashboards. Please help. I have attached the screenshots below.

Hi,
A good thing when having error messages on screen is to read them. I did it thanks to your screenshot and here is what I read in your error message:
Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified at OCI call OCIserverAttach. [nQSError: 17014] Could not connect to Oracle database. (HY000)
The good news: OBIEE is working just fine ...
The bad news: your connection pool are using wrong connection information (datasource name, username, password).
Merging RPD and move them on 1 single server doesn't magically change the connection pools to adapt the settings.
Open the connection pools of your 4 physical databases defined in your RPD, check what settings you have there inside, validate the TNS is known and "pingable" from the BI server (tnsping) and make sure you can connect.
It's a DB connection issue, nothing more.

Similar Messages

  • Merge call not working in ios7 on Iphone5

    Merge call not working in ios7 on Iphone5 ?

    Same here. We have this call center in our company where after i have added a call to merge i have to push no. 4 and dial from the keypad. This has never been possible in ios but it have been possible to create a contact called "Merge" and add number 4 as it's phone number. Now by merging first my clients call to my collegegue and then to this "Merge" contact it has been dropping me out of line and my client and collegue are merged.
    Now ios 7 wont let me call to this "Merge" contact's number "4"

  • Merge call not working

    I tried to initiate a 3 way call using an Apple 5s, and it did not work.  I am traveling in Toronto, could that have something to do with it?

        @DanPetrie
    Let's see what 3 way / Conference calling options are available to you.  Please share more details of what you experienced.  Were you on an existing call, trying to place another call to conference or were you attempting to accept a second incoming call to merge?  Please see more details about Call Conferencing in the Device Manual here: http://bit.ly/1ruLn6H on page 52.  Thanks!
    AnthonyTa_VZW
    Follow us on Twitter @VZWSupport

  • Merge statement not working over db link

    I have a merge statement that works fine when it's run against a local table, but when I try to run it against a table over a database link, I get the following error.
    ERROR at line 1:
    ORA-01008: not all variables bound
    ORA-02063: preceding line from REPOS
    ORA-06512: at "DBADMIN.PING_DB", line 6
    ORA-06512: at line 1
    Here is the code:
    create or replace procedure ping_db
    as
    begin
    merge into availability@repos A
    using (select trunc(sysdate) from dual)
    on (trunc(A.day) = trunc(sysdate))
    when matched then update set A.uptime = A.uptime + 1
    when not matched then insert (hostname,dbname,day,uptime) values
    (utl_inaddr.get_host_name,sys.database_name,trunc(sysdate),1);
    commit;
    end;
    /Code compiles fine, but gets the error when it's executed. Any help would be appreciated.

    9.2.0.x is the version (9.2.0.4,.5 and .6)

  • Merge Module not work at target machine

    Post Author: soky
    CA Forum: Other
    Hi all,
    I cannot deploy my RDC delphi application. This is very simple app, for trying base of using of rdc. Only one TApplication and a TCrystalActiveXReportViewer component on a form. Run nicely on developing machine. But the deploy drive me crazy
    Product: Crystal Reports Developer
    Version: 11.0.0.1282
    Patches Applied: 0
    Operating System(s):
      Developer: Windows XP home english
      Target: Windows 2000 5.00.2195 SP4 hungarian (version of msi.dll=2.0.2600.1183)
    I using InstallShield Express Borland Limited Edition. The build of release successfully with zero error, including merge modul CR11_rdc_runtime. But install broken the following error message:
    Internal Error 25001. 1615:
    RegistrationCosting::CostAllISSelfRegEntries::MsiDatabaseOpenView(hDatabase,_T("Select * from ISSelfReg"),hVieew)
    How can I make usable install stuff with this tools?
    Thanks, soky

    Can somebody tell me where I can find the log that will tell me whats going on with this module at startup.
    You say the module gets loaded, as does lsmod. So there will be no error message, as the system thinks the module is working(which it probably is). The reason your wireless is not working may be another issue. In order for some things to work correctly certain things need be loaded before other things can access them.
    anyway, all error logs are in /var/log, shouldn't take you long to look through them. They are dated.

  • Merge calls not working

    My iPhone4, merge calls option is not working. Whenever I try to merge calls, it just show as it is going to a conference call, but suddenly gets closed. One call will be on hold and other call will be active but never works as a conference call. I used use this option very well a month before but now it is not working.

    I have tried to reset the settings and see if this works, but I still face the problem

  • Em.merge does not work while em.persist does?

    Hello,
    I have a stateless session bean with code snippets below.
        @PersistenceContext
        private EntityManager em;
        public void setList(ContainerList list, int key) {
            ContainerList stored = (ContainerList)em.find(ContainerList.class, key);
            list.setId(key);
            if (stored == null) { em.persist(list); }
            else {
                em.merge(list); // 1st alternative
    //            stored.copy(list); // 2nd alternative
    ...When I call the method setList for a non existing key, the entity is stored in the database. When I call the method for an existing key, the old value is not updated by the new, i.e. the merge method has no effect. If I comment out the 2nd alternative, it has no effect either. Does anyone has an idea why this does not work? I am using Netbeans 5.5 and 5.5.1 release candidate 1. (With the included application server.)

    Hello,
    I will try to summarise my knowledge of the JAVA persistence API as the documentation is not always clear and may be misleading.
    In SQL you have 4 main statements: INSERT, SELECT, UPDATE and DELETE.
    with
    @PersistenceContext
    private EntityManager em;some documentation appears to make the following associations:
    em.persist(Object entity) -> INSERT
    em.find(Class entityClass, Object primaryKey) -> SELECT
    em.merge(Object entity) -> UPDATE
    em.remove(Object entity) -> REMOVE
    However, practice shows that this is NOT the case!
    em.merge(Object entity) does exactly the same thing as em.find(Class entityClass, Object primaryKey)! The only difference is that the em.merge(Object entity) method takes a detached object of the entity class as argument with the same primary key as the attached object you are loading.
    Detached objects are objects of the entity class the database manager is not aware of. Attached objects are objects in the database and are managed by the persistence context. Every newly created object of an entity class is detached. You can attach them to the database with the em.persist(Object entity) method call. Attached objects can be retrieved with the em.find(Class entityClass, Object primaryKey) or with the em.merge(Object entity) method. All changes made to attached objects are automatically stored in the database. There thus is no explicit method for the UPDATE statement. You just make changes to attached objects and the entity manager copies the changes to the database (at the end of the persistence context). An easy way to make all the changes you need at once is to have a detached object that contains the right values and then copy all these values to the associated attached object with a self defined copy method in the entity class as in
       Entity detached;
    // --> begin persistence context
       Entity attached = em.merge(detached);
       attached.copy(detached);
    // <-- end persistence contextIf you are working with session beans, the persistence context standard begins with the beginning of a transaction and ends with the end of a transaction. A transaction standard begins with the start of a session bean method and ends with the session bean method. If you choose to, you can make the persistence context of type extended with
    @PersistenceContext(type=PersistenceContextType.EXTENDED)
    private EntityManager em;In this case, the persistence context ends when the session bean is removed from the EJB container. (Can be useful to keep attached entities in the state of an stateful session bean.)
    Without session beans, you have to declare explicitely the start and end of a persistence context or transaction, but I refer to existing documentation for this, as I do not actively know how to handle things without session beans.
    Finally, the methods em.persist(Object entity) and em.merge(Object entity) use a detached object as argument, while em.remove(Object entity) uses an attached object as argument (using a detached object results in an Exception thrown).
    I hope this makes some things clear

  • Oracle 11g merge statement not working properly

    HI I have recently my oracle version to 11.2.0.3 -64 bit . My merge statement is geeting failied saying that invlid identfier at line number 18    
    MERGE INTO peer_index indx        USING staging.stg_peer_filing stg          ON (indx.peer_element_code = stg.fund_code                and indx.index_effective_date = trunc(stg.pricing_date))        WHEN MATCHED THEN UPDATE          SET indx.filing_date = trunc(stg.filing_date),            indx.reported_net_assets = stg.net_assets,            indx.active_flag = 'N',            indx.parent_index_code = NULL,            indx.update_datetime = systimestamp,            indx.last_update_user_id = user        WHEN NOT MATCHED THEN INSERT         (index_code, peer_element_code, filing_date, index_effective_date,          reported_net_assets, active_flag          )        VALUES         ((SELECT pe.index_code_prefix || to_char(stg.pricing_date,'MMRR')           FROM fi_benchmark.peer_element pe           WHERE pe.peer_element_code = stg.fund_code),          stg.fund_code, trunc(stg.filing_date), trunc(stg.pricing_date),          stg.net_assets, 'N'         );
    please help why this is happening .Same query works fine in 10g .

    which line is the line that has the error?
    merge INTO peer_index indx
    USING staging.stg_peer_filing stg
    ON (indx.peer_element_code = stg.fund_code AND indx.index_effective_date = Trunc
    (stg.pricing_date))
    WHEN matched THEN
      UPDATE SET indx.filing_date = Trunc(stg.filing_date),
                 indx.reported_net_assets = stg.net_assets,
                 indx.active_flag = 'N',
                 indx.parent_index_code = NULL,
                 indx.update_datetime = systimestamp,
                 indx.last_update_user_id = USER
    WHEN NOT matched THEN
      INSERT (index_code,
              peer_element_code,
              filing_date,
              index_effective_date,
              reported_net_assets,
              active_flag )
      VALUES ((SELECT pe.index_code_prefix
                      || To_char(stg.pricing_date, 'MMRR')
               FROM   fi_benchmark.peer_element pe
               WHERE  pe.peer_element_code = stg.fund_code),
              stg.fund_code,
              Trunc(stg.filing_date),
              Trunc(stg.pricing_date),
              stg.net_assets,
              'N' );

  • AIR output with merged TOCs not working

    I want to create Adobe AIR application help (not Adobe AIR browser based help). I have setup the folders and inserted the merged table of contents into the parent project as defined in the Merged Help article.
    What I am experiencing.... If I select the Output type as Adobe AIR application then there is no mergedProjects folder created. Should there be?
    As a test, I also selected the output type as Browser Based help, I then get the mergedProjects folder. When I then compile my child projects to the respective child folder under the mergedProjects folder I get an string of Data > files folders. These folders have created a path so long that they can no longer be delected...because the recycle bin cannot handle the long path. 
    Any suggestions are appreciated!

    The Files and Data folders are what you get when you generate browser based AIR help and I have no idea how you have managed to get that setup. You will have to delete rather then recycle.
    MergedProjects is unique to browser based help (WebHelp and AIR) so you should not get that folder with locally installed AIR help.
    You refer to "the Merged Help article" but don't state which one. Are you talking about the topic in the help? Please state the title so that we know what you are working from.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Merge sort not working

    so i've been trying to write a merge sort algorithm for linked lists for an assignment and i'm so fing close, but it's really frustrating me because it isn't working correctly. i have a sort and a merge method and i'm doing this recursively. can someone point out what i'm doing wrong?? it prints the elements (i've been testing with random strings) and even changes their order, but no luck on them actually being sorted. help is massively appreciated.
    sort method:
    public static <T extends Comparable<T>> void sort(ADTListInterface<T> list){  
         int s = list.size();
    if (s<2)return;
    MyLinkedList<T> listl = new MyLinkedList<T>();
    MyLinkedList<T> listr = new MyLinkedList<T>();
    int x=0;
    for(; x<s/2; x++){
         listl.add(list.get(x));//add first half of list to new list
    for(; x<s; x++){
         listr.add(list.get(x));//add rest of original list to new list
    sort(listr);
    sort(listl);
    merge(listl, listr, list);     
    merge method:
    public static <T extends Comparable<T>> void merge(ADTListInterface<T> listl,ADTListInterface<T>
         listr,ADTListInterface<T> list){
         while(!listl.isEmpty() && !listr.isEmpty()){
              if(listl.get(0).compareTo(listr.get(0))<= 0){//select smaller element and put back in original list
                   list.remove(listl.get(0));
                   list.add(listl.get(0));
                   listl.remove(0);
              else{
                   list.remove(listr.get(0));
                   list.add(listr.get(0));
                   listr.remove(0);
         //if anything is left in remaining lists put elements into original list
         while(!listl.isEmpty()){
                   list.remove(listl.get(0));
              list.add(listl.get(0));
              listl.remove(0);
         while(!listr.isEmpty()){
                   list.remove(listr.get(0));
              list.add(listr.get(0));
              listr.remove(0);
    }

    i've been testing with random stringsIt would be better to test on specific things, eg from simple to complex. For example, test it with:
    -an empty list
    -"a"
    -"a","b"
    -"b", "a"
    -"c","b","a"
    continue until your sorting fails, then find out why it fails there and not on the previous test.

  • Trim Tool Using Merged Clips Not Working Correctly

    I have a project that's made up of mostly merged Alexa clips. The camera spits out ProRes422 clips along with WAV audio files that were merged in Final Cut pro. The problem is that when I try to trim using the Trim tool, it will kick the footage in the viewer several seconds away from the frame I'm trying to trim. It's fine when it's in the sequence, but I can't view the frames I'm trimming in the viewer windows. For example, it will say that the "In Shift" is + or - 4:10 when it should only be reading :01 at a time.
    Any ideas why this would happen and how to fix it?
    Thanks,
    Eddie

    You may not be zoomed in enough in the Timeline window, the more you zoom in, the more detailed edit you can perform. Zoom out too much, and you won't have the sensitivity.

  • Merging of contacts - how to STOP or manually UN-merge? not working properly!!!

    Hi,
    how to STOP merging of contacts? Or manually un-merge them?
    Everybody seems to like that feature to avoid double entries, but in my case it leads to missing or accidently mixed up contacs.
    I use a Q10 with an exchange account for buisness contacs, and gmail for private.
    1 case)
    my parents share the same surname, adress, and landline telephone number. wow, what a surprise. now bb10 merges theese two contact and I only see my father in the list. if I search for my mother also my father shows up.
    How can I manage to keep them as two different contacts in my list without getting them a divorce?
    2 case)
    A colleague of mine is in my exchange list as busness contac, and in my gmail list as private contact. bb10 automaticaly merges those and the private mobile number gets lost. also I want to avoid that his private mobile number gets synced to our buisness crm server....
    is it possible to tell bb10 to keep some contacts apart???
    this is really annoying.
    after 15+ years of contacs synching experience with different devices I believe it is more likely that humanity will get mars terraformed, before they get this sh** to work properly.

    I'll take that bet on the terraforming by the way, what shall we say a hundred?
    If you've been helped click on , if you've been saved buy the app.
    Developer of stokLocker, Sympatico and Super Sentences.

  • Merge files not working

    Hi, we can no longer merge files, other than pdfs, into a single pdf. The system stalls out in converting.

    It's hard to say without looking at one of the files. If you can't post one somewhere, I'd be happy to take a look if you're free to email me: acroscript at gmail dot com

  • Merge to HDR Pro does not work on Nikon D800 RAW (NEF) files

    Hi,
    I can't get Merge to HDR Pro to work on NEF RAW files from my Nikon D800 - nothing happens after after confirming the file selection.  However, it works ok if I convert those files to DNG (using Lightroom 4), and if I use the D800's JPGs, and if I use Nikon D7000 NEFs.  It just seems to be a problem with Nikon D800 NEFs.
    Steps taken:
    1. File -> Automate -> Merge to HDR Pro
    2. Browse... and select NEF files (even selecting 2 files does not work).
    3. Attempt to Automatically Align Source Images is checked.  Then press OK.
    Expected result:
    Progress cursor spins as files are loaded and HDR dialog appears.
    Actual result:
    Nothing happens - no progress cursor or CPU or disk activity - it is as if I had clicked cancel instead of ok.
    This is a clean install of the 64 bit CS6 beta on Windows 7 64 bit, with no plugins, and I reset preferences (Ctrl+Alt+Shift on startup).  I do have my existing CS5 Extended still installed, as well as Lightroom 3.6 and 4.0.
    I can send you the NEFs if you like.
    Here's my System Info:
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:4 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2672 MHz
    Built-in memory: 6135 MB
    Free memory: 501 MB
    Memory available to Photoshop: 5352 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTX 560 Ti/PCIe/SSE2
    Display: 2
    Display Bounds:=  top: 0, left: 1920, bottom: 1200, right: 3840
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1200, right: 1920
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 560 Ti 
    OpenCL Version:
    Driver Version: 8.17.12.9573
    Driver Date: 20120209000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1920 x 1200 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 560 Ti 
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: D:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Paul\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      D:\, 139.7G, 19.6G free
    Required Plug-ins folder: D:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: D:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       Camera Raw 7.0
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Hi,
    The Ps CS6 public beta version contains the same camera support as found in Ps CS5/5.5 compatible CR 6.6. There will be future updates to CR 7 for Ps CS6 to pick up more camera support. The Nikon D800 NEF files are not supported, yet.
    If you like to work with your D800 files in the public beta build now, you'll have to get the DNG Converter 6.7 from here: http://labs.adobe.com/technologies/cameraraw6-7/
    and convert your files to DNG.
    regards,
    steve

  • LR2 and PS4 - merging to HDR, merge to Panaorama and Edit in Layers not working

    Hi,
    I've recently upgraded from LR to LR2.1 and Photoshop CS to CS4. I've been trying to multi-select images from LR2 and edit them as HDR and Panoramas using the "Edit in->" merging options.
    None of them seem to work. I can see PS CS4 being opened, but then nothing happens. No image is opened or dialog box shown anywhere. Closing PS doesn't prompt for any saving, etc.
    I think the problem is because my RAW/DNG files are stored on a NAS. Trying to do the merge from PS directly using the files also doesn't work. But if I copy the files to my local HDD, then things work a lot better.
    Is this a known issue with CS4?
    iMac, OSX Leopard, 4Gb RAM.

    I have done some more tests:
    Setting up CS3 as "Additional External Editor" in LR2.1 Edit/Preferences/External Editing works fine with RAW ( .NEF ) files on NAS-drive.
    Also CS4 as "Additional External Editor" works the same way. The procedure is the same as when CS3 was the standard editor, ie exporting a TIFF file from LR2.1.
    The difference is that the standard CS4 integration is not writing TIFF files från LR, but has a more tight integration to CS4, which is much faster. But still not working when RAW files are on NAS. ( LR catalog files are on local disk ).
    Configuration:
    Dell dimension 9200
    Windows Vista Home Premium ( 32-bit )
    D-link DNS-323 NTFS file system
    Lightroom 2.1
    Photoshop CS4 Extended
    Latest updates installed.

Maybe you are looking for

  • Key Stuck - *EVEN WHEN NO KEYBOARD CONNECTED*

    Hello The up cursor on the keyboard is stuck on. But it stays stuck even when no keyboard is connected at all. i.e. if you use the mouse to open a menu, the options will highlight from the bottom up. If you type a document the cursor will keep flying

  • Urgent help need for user exit

    Hi all, i have just did one user exit but in RSA3 field is not coming. in step 1 i modified the extract structure. in step 2 in added field in include program ,saved and activated it. but field is not coming in RSA3. can anyone plese help me what sho

  • In-car adapter for macbook air - what's the latest on this please?

    I've got the latest macbook air and need to use it, and charge it, from a 12 volt car socket. I understand that I cannot do this though - surely I must have been misinformed? It seems that apple do make an "empower" socket rated at 15 volts that you

  • What do I need to develope an iOS app?

    Hello everyone Many Many and Many days I think about making apps for iOS and I have great ideas too But I have a huge problem and some good potentials too I want someone help me and tell me how to start making apps for iOS I know its not going to be

  • Software updates for my Mac Book Pro

    How can I update my Mac Book Pro From OS X 10.5.8 to a operating system compatible with my I pad and I Phone 5S?