'Raw' Data XMP view shows internal properties that don't exist in the data

In FileInfo view for an image, if I switch to the 'Raw Data' tab, it shows photoshop:ColorMode and photoshop:ICCProfile. However, when I check the actual XMP data of the image e.g. using exiftool or a text editor, these properties do not exist in the XMP data.
According to this thread: http://forums.adobe.com/message/5057589 these are both internal properties to PS / Bridge, which explains why they don't exist in the XMP. But why are they shown in the 'Raw' data view for the XMP then? Showing them here is just confusing as it makes it seem like they should exist in the XMP data.
I can't really see any point in including nonexistent tags in the Raw Data view. But if it is deemed necessary, how about highlighting them a different color, such as using a grey font instead of black? At least it would indicate that they were different to the real data.
P.S. This is with Bridge CS5, possibly the issue has been fixed in CS6?

Hi Paul
The issue is that the Bridge File Info panel is showing these tags in the XMP for the image, but if you check the XMP of the file, those tags aren't there.
As a side issue, Bridge File Info panel is also showing the XMP in a different structure to that which exists in the actual file. There are two issues here really
ACR is not writing the photoshop:ColorMode tag (or the photoshop:ICCProfile tag) to the JPEG (I checked the .xmp sidecar file for the RAW file and the photoshop:ColorMode tag does exist in there, but does not exist in the JPEG file converted through ACR).
Bridge's File Info panel is showing data in the XMP that is not actually there.
Although I would like the ColorMode tag added to the image, I don't think point 1 is a real issue, since the ICC profile is embedded okay. Point 2 does appear to be a bug (or at least it is confusing if it is intended behaviour).

Similar Messages

  • Ghost Jive notifications that don't exist on the forums

    Hi,
    I'm constantly getting Jive notifications to my iPhone. And then when I swipe on one, it opens the correct discussion or blog, as it should. But, there is no response to that discussion/blog on the web.
    Any ideas why this is happening? It's a new thing, in the last week.
    John

    It's happened to me a couple of times over the past week. 
    I think it has to do with moderation: some content received multiple abuse reports and was hidden. Then these abuse reports were rejected and the content put back into circulation, which we know forces it back into the communications stream as unread, forcing a notification on the mobile app.
    Moving content would also have this effect.

  • My computer is saying that I am not in the US and so I am unable to view shows, Youtube, etc. I've gone under the location settings and put US several times but nothing has worked. What should I do?

    My computer is saying that I am not in the US and so I am unable to view shows, Youtube, etc. I've gone under the location settings and put US several times but nothing has worked. What should I do?

    It may not be your computer telling you this, it is probably the company providing the shows to you over the Internet. If that is the case, no setting on your computer can change it because the media company is going by your network address (IP address), which is where your Internet modem (cable or DSL) connects to the outside Internet. If the location of your Internet connection appears to be outside the US (even if it is mistake), media companies that distribute shows under contracts with geographical restrictions may lock you out.
    If you use a service like a VPN service, you may have the ability to use IP addresses from other countries so that you can appear to be connecting from there. But it takes some setting up.

  • How do I show a count for rows that don't exist?

    Hi, I'm trying to count the number of records grouped by rank(B,C,R),month,and year. Basically, anytime a part fails testing a record is entered which records the failure Rank and occurrence date. A record is only inserted if a part failed for specific rank. So not all 3 ranks will have entries. I'm able to count all ranks by month,year that do exist. But how do I get values of 0 for the ranks that don't exist? I just created a table qa_rank that has just one column rank with 3 records(b,c,r). but its not being used as of now. rank is just a column in qa_occ record.Here is my query.
    select to_char(occdate,'YY') as yr, to_char(occdate,'MM') as mn,
    rank, count(occdate)
    from qa_occ
    where q.occdate between '1-Apr-2005'and '31-Mar-2006'
    and q.supplier = '11107'
    group by to_char(q.occdate,'YY'),to_char(q.occdate,'MM'),q.rank
    order by to_char(q.occdate,'YY'),to_char(q.occdate,'MM')
    which returns this
    YY MM RANK COUNT(OCCDATE)
    05 09 C 2
    05 10 C 2
    05 11 C 1
    05 11 R 1
    06 01 C 3
    06 02 C 1
    06 03 B 1
    06 03 C 2
    I need it to return C,B,R for everymonth. If no records exist then the count for the month,rank should be 0. Any ideas? Thanks.

    something like:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select * from qa_occ;
    OCCDATE   PART            R INDEXPOINTS
    15-SEP-05 B3661-RYPX-A000 C           4
    25-SEP-05 B3661-RYP-A000  C           4
    11-OCT-05                 C           7
    20-OCT-05 B3661-RYP-A000  C           4
    11-NOV-05                 C           4
    18-NOV-05 B3661-RYPX-A000 R           0
    11-JAN-06 B3661-RYP-A000  C           4
    25-JAN-06 3511-RNA0-0111  C           4
    27-JAN-06 3511-RNA0-0111  C           4
    15-FEB-06 3511-RNA0-0111  C           4
    07-MAR-06 B3661-RYP-A000  C           4
    14-MAR-06 B3661-RYP-A000  C           4
    15-MAR-06 3511-RNA0-0111  B          13
    13 rows selected.
    assuming that there are only three ranks available B, C,and R we considered this as a lookup values. now in the query below we incorporate an inline view for the lookup values:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select qa.yr, qa.mn,
    28         decode(qa.rank,lk.rank,qa.rank,lk.rank) rank,
    29         sum(decode(qa.rank,lk.rank,qa.cnt,0)) cnt
    30    from (select to_char(qo.occdate,'YY') as yr,
    31                 to_char(qo.occdate,'MM') as mn,
    32                 qo.rank,
    33                 count(qo.occdate) cnt
    34            from qa_occ qo
    35          group by to_char(qo.occdate,'YY'),
    36                   to_char(qo.occdate,'MM'),
    37                   qo.rank) qa,
    38         (select 'B' rank from dual
    39          union all
    40          select 'C' rank from dual
    41          union all
    42          select 'R' rank from dual) lk
    43  group by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank)
    44  order by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank);
    YR MN R        CNT
    05 09 B          0
    05 09 C          2
    05 09 R          0
    05 10 B          0
    05 10 C          2
    05 10 R          0
    05 11 B          0
    05 11 C          1
    05 11 R          1
    06 01 B          0
    06 01 C          3
    06 01 R          0
    06 02 B          0
    06 02 C          1
    06 02 R          0
    06 03 B          1
    06 03 C          2
    06 03 R          0
    18 rows selected.
    SQL>

  • Issues exist in release build that don't exist in debug build

    I've been working on a Flex 4.1 project and have recently noticed an issue that does not exist in the debug build.  Then when you export a release build and run it the issue appears.  This is the only change that's made that breaks it.  To me this seems to be a bug in the player, SDK, or compiler that I might need to post, but I figured I'd submit it here in case I'm missing something.
    Basically it seems to be an issue with objects in an ArrayCollection being instantiated as the correct class type before being added.
    When in debug mode, if you set a breakpoint to view the objects in the ArrayCollection you will see them appropriately as their Strongly Typed class.  However, when the release mode build is run it will throw an RTE on that same line indicating that the ArrayCollection members are ObjectProxy and they can't be cast into their Strongly Typed class.
    Here's the RTE that happens and right now I just need to know if I'm missing something, or if this looks like a bug, and to which bugbase it should be posted (Flash Player, Flex SDK, Flex Compiler, etc.)
    TypeError: Error #1034: Type Coercion failed: cannot convert mx.utils::ObjectProxy@28250141 to
    <confidential package path>.PlayerPageSummary.
        at <confidential package path>.service::InitializeStorefrontServiceResponseCommand/execute()
        at org.robotlegs.base::CommandMap/execute()
        at org.robotlegs.base::CommandMap/routeEventToCommand()
        at MethodInfo-1674()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at <confidential package path>::<confidential acronym>ModuleActor/dispatchLocal()
        at <confidential package path>.live::InitializeStorefrontService/result()
        at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()
        at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()
        at mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()
        at mx.rpc::Responder/result()
        at mx.rpc::AsyncRequest/acknowledge()
        at DirectHTTPMessageResponder/completeHandler()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()

    Alex,
    Thanks for your help and here's an update on this from me.  We did try out your suggestion to see if "PlayerPageSummary can be retrieved via getClassAlias".  I'm not the one that did the testing, but my teammate who did, said that the class being registered was not the issue.
    While he was working on that I further investigated our ANT builder and configuration to see what might have been different between ANT building non-debug SWF and Flash Builder building non-debug SWF.  Turns out that my teammate had added some [ArrayElementType] metadata that I was not aware of.  Once I realized that, I added it as metadata to be kept in my flex-config.xml which ended up solving the debug vs. release mode issues.
    Afterwards, I double-checked the livedocs and also did some Googling.  From the above it appears that debug SWF keep all metadata without you needing to explicitly tell it to. On the other hand, outside of a handful of metadata tag such as [Bindable] release builds neeed to be told what to keep.
    Does this sound right?
    Also, do you know off the top of your head if this is documented by Adobe anywhere and what the link is?  I had a real tough time finding anything mentioning how debug SWF retain all metadata.
    Thanks again for your help!

  • HELP! "There are 309 files that don't belong in the project"

    I needed to reformat my OS, so I backed up all my data onto DVD+RW's. (Verbatim brand.) including my imovies. I copied the entire "blahblah.iMovieProject" folder onto the DVD, then copied it back onto the drive after the reinstall. But now when I click on the project, it prompts me about this:
    "There are 309 files that don't belong in the project"
    and then this:
    "There are 160 stray clip files in the project folder. Would you like to put them on the clips pane?"
    After I click on "Leave Files Alone" for both of them, (versus move to trash, and Move files to clips pane, respectively), The project opens completely BLANK.
    Oh great. Please inform. Am I out of luck?
    Oh, btw, it also created like 10 versions of each photo in the "Media" folder. ick. what happened?...
    g5   Mac OS X (10.3.9)  

    Also, one more thing! Now that this has happened, even after I quit and restart the computer, upon opening the application, instead of starting out with a brand new project, the same prompts appear, and then leaves me with that seemingly corrupt project which is blank.

  • Import photos that don't exist...

    When I import pictures into iPhoto from an external hard drive, there are mystery pictures that are showing up. These are pictures that used to exist on the HD but that I deleted from there.
    I deleted my entire iPhoto library and emptied the trash within iPhoto. I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    I tried to re-import the pictures from the external HD to iPhoto, but AGAIN, the mystery pictures are there. I've checked the folder in the HD that they are showing up in. But, they are not there. I've even done a search on my computer, and the files don't exist.
    Please help me figure out why this is happening. I just don't know how to get rid of these pictures. I want them gone...completely!!!
    Thank you!!!

    I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    Never make changes to the structure or content of the iPhoto library using the finder
    make sure you have the photos you want safe and drag the baad iPhoto library to the trash and empty it and then depress the option key and launch iPhoto and create anew library - now start using this correctly set up library
    LN

  • Movies that don't exist

    front row looks in the movies folder and lists the contents, right?
    well it's showing titles in that are not in and have never been
    in my movies folder.
    nothing happens when selecting these (probably because they don't exist).
    of course i can't delete since they do not appear in the finder or
    spotlight search.
    i tried deleting everything in the movies folder, of course all
    that's left in front row are the movies that don't exist.
    any suggestions?
    Message was edited by: avinbc

    Are your movies, even though they're gone from the hard drive, listed in iTunes somewhere? That would make them appear in Front Row even under the Videos section.
    The Front Row preference file does not remember anything except which module was the last one you used.
    -Doug

  • Get rowns that don't exist in any of the tables.

    Hi,
    I need to implement some views to compare systems.
    This views will compare tables with the same structure and I want to extract the rows that don’t exist in any of the sides.
    I need to implement some views to compare only two tables, others to compare 3 tables and one to compare 5 tables and another to compare 10 tables!
    Each table can contains from a few rows up to 10 million rows (that was the biggest count I found for this tables).
    My test scenario:
    CREATE TABLE TEST_TABLE
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE2
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE3
    (COL1 NUMBER ,
    COL2 CHAR(25));
    insert into TEST_TABLE (COL1,COL2) values (1,'2');
    insert into TEST_TABLE (COL1,COL2) values (11,'t1');
    insert into TEST_TABLE2 (COL1,COL2)  values (1,'2');
    insert into TEST_TABLE2 (COL1,COL2) values (22,'t2');
    insert into TEST_TABLE3 (COL1,COL2) values (1,'2');
    insert into TEST_TABLE3 (COL1,COL2) values (33,'t3');To find the differences between two tables I implemented the following:
    select * from
    (select * from TEST_TABLE
    minus
    select * from TEST_TABLE2
    union all
    (select * from TEST_TABLE2
    minus
    select * from TEST_TABLE
    Result:
    COL1 COL2
    11     t1                      
    22     t2                       For the 3 tables comparison The result should be:
    Result:
    COL1 COL2
    11     t1                      
    22     t2                      
    33     t3                       For the other ones I can implement the same way, but for sure this is not the prettiest and most performing solution!
    How can I achieve the result I intent with the most performance?
    Thanks,
    Ricardo Tomás

    You didn't say if you allow duplicates in your tables, so i assumed you didn't.
    If a single table could have multiple occurrences of a given col1, col2 combination you would need to distinct the col1,col2 list from each table before doing the union all.
    ME_XE?  select
      2     col1, col2
      3  from
      4  (
      5     select col1, col2       from test_table
      6             union all
      7     select col1, col2       from test_table2
      8             union all
      9     select col1, col2       from test_table3
    10  )
    11  group by
    12     col1, col2
    13  having count(*) = 1;
                  COL1 COL2
                    33 t3
                    22 t2
                    11 t1
    3 rows selected.
    Elapsed: 00:00:00.01
    ME_XE?

  • Deauthorizing computers that don't exist

    How am I supposed to deauthorize computers that don't exist? Every time I've had to reinstall Windows, iTunes eats up another "authorization". Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?

    Every time I've had to reinstall Windows, iTunes eats up another "authorization".
    Your supposed to deathorize BEFORE a re-install. Not after. iTunes makes it very easy to do that.
    Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?
    Apple makes it easy enough to de-authorize your computer. You can even do a de-authorize all once a year. Log on your account and you should be able to not only view your authorizations, but have an option to de-authorize all of them.

  • How to stop iphoto from recovering photos that don't exist?

    I just bought my iMac and transferred all my photos from my backup drive to the iphoto library. In organizing my photos I must have deleted photos or had some corrupted photos in the transfer. Now, every time I open iphoto is says it has recovered 75 or so photos, creates a folder for them, but it's empty. How do I stop it from trying to recovery photos that don't exist? I've searched and have found nothing. The folder generated by iphoto as a recovered folder is empty...

    Welcome to the Apple Discussions.
    Can you give me an idea of why this type of error occurred
    Because of a minor glitch when iPhoto failed to clean up after an import.
    why has this now corrected the error?
    iPhoto should remove that Importing Folder at the end of the importing session. When you launched iPhoto again it saw the folder and (incorrectly) assumed there was an import in progress. Removing the folder means that iPhoto won't make that assumption.
    There is no reason to assume that the problem wil recur.
    Regards
    TD

  • The application could not be installed because an application with that name already exists at the s

    The application could not be installed because an application with that name already exists at the selected installation location. Try installing to a different location.

    1.   I am trying to install:  Adobe - Download free trial version
    AdobeAcrobat
    XI Pro <http://www.adobe.com/go/tryacrobatpro/>
    Operating system:  Windows 7
    Current software:  see attachment
    <Removed by Moderator>

  • Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Welcome to the Apple community.
    A number of people have reported similar issues recently, many appear to have found a discrepancy of some kind in their account settings and making changes to these settings or simply resetting them has resolved the matter.
    Check your account details are correct, check that you are using the correct details for Location, Region and Time Zone. You may want to change these settings and then change them back to see if that helps.
    You might also try logging out of and then back into your iTunes account (Settings > iTunes Store > Apple ID’s > Sign Out) and restarting your router. (Some have reported that after doing this, they need to check for rentals even though it may report that there aren’t any, after which rentals once again appear in the ‘movies’ feature)
    Rentals should appear under their own heading in the ‘Movies’ feature, you might also check at Settings > iTunes Store > Check For Rentals.

  • WCS showing APs that don't exist

    Hi,
    I'm doing a demo for a customer and I have a small "bug" on my WCS. The WCS is showing fault information on the home page. It says: "Total APs not yet assigned to Maps : 2". When I open the link, it says "None detected". There are also two unknown MACs on the client tab of the home page.
    I have one controller and five access points at the moment. All the APs have been placed on a map. I've done an audit for the controller and refreshed the config to WCS. Is there any way I could erase the old database and get rid off these "ghost APs"?
    I'm running WCS v. 6.0.132.0 and WLC v. 6.0.188.0.
    Thank you,
    Petri

    This is a cosmetic issue that can be corrected by editing the database of WCS.
    Before doing so, stop wcs service, run on the cli dbadmin.bat checkschema (from the wcs bin folder) and then restart wcs to see if this fixed the db.
    If not please open a TAC case as we manually need to edit your database to remove the 2 aps from the list.

  • Media Browser won't show some textures that are right there by the rest?

    Hello, ever since the upgrade to Studio the Media browser will not see 4 and a half categories of Textures. Noise thru Urban won't show in Media browser menu? Tried moving the files and used LiveType preferences but that didn't work either. They are on my Primary drive so that isn't the problem. All the rest of them work fine. They are in the exact same place as the working files. Anybody have an answer? Thank you. Daniel

    See the reply under Where are the Effects? I copied the files from my laptop and installed them on my G5. Now it all works! How simple is that? They should have installed from the discs however, but they don't. Hope this helps.

Maybe you are looking for

  • IMovie Effect Blanks Screen When Applied

    I have followed the directions below to apply an effect to part of a clip. When I preview the effect, it looks fine. After I apply the effect it blanks out the section where the effect has been applied and there's no sound either. Your help would be

  • User Defined Fields

    Hi Experts, I have a requirment that before closing a project in system means before changing the status of a project from REL to TECO or CLSD , all user defined fields should get populated with default values. Please let me know how to achieve this

  • Computer saying no bootable device on startup

    Computer saying no bootable device on startup

  • Confused on RIGHT OUTER JOIN

    Here is a query and desired output for a weekly sales report. The problem is that if no data exists for given businessdate, the report is empty. It should show store with zeroed totals. NOTES: 1. storenbr must be string 2. bow, eow = beginning and en

  • Windows 7 download & restore

    have libreto 100 with system crash using windows 7. can't find USB with recory data. recovery options using F12 not working get copy error. tried to order recovery media yet serial number not being accepted. looked on website for file to download als