How to update custom metadata?

Hi,
I have created a xml document (schema based) in the repository.
I append with appendResourceMetadata a xml document (also schema based)
Now I try to change an element value of the metadata with the folowing update command but the value do not change. Why? What is wrong?
a) update resource_view set res = updateXML(res,'//CMSWorkflow/State/text()','submitted','xmlns="http://xmlns.oracle.com/xdb/CMSWorkflow"') where any_path = '/siecom/Australia/CCMIGhtml_test.xml'
b) update resource_view set res = updateXML(res,'/r:Resource/CMSWorkflow/State/text()','submitted','xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"') where any_path = '/siecom/Australia/CCMIGhtml_test.xml'
c) update resource_view set res = updateXML(res,'/r:Resource/w:CMSWorkflow/w:State/text()','submitted','xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd" xmlns:w="http://xmlns.oracle.com/xdb/CMSWorkflow"') where any_path = '/siecom/Australia/CCMIGhtml_test.xml'
Any help are realy welcome.
Note: if I update with updateResourceMetadata it works, but this meen to update the full document not only one element!
Oliver

In general it's more efficient to directly update the table that contains the metadata...
Eg
set long 100000
set echo on
alter session Set events='19027 trace name context forever,level 4'
select count(*)
  from IMAGE_METADATA_TABLE
select object_value
  from IMAGE_METADATA_TABLE m, RESOURCE_VIEW r
where m.RESID = r.RESID
   and equals_path(res,'/home/SCOTT/ImageLibrary/Norwich (3).jpg') = 1
update IMAGE_METADATA_TABLE m
   set object_value = insertChildXML
                         object_value,
                         '/imageMetadata',
                         'Title',
                         xmltype('<Title xmlns="http://xmlns.oracle.com/demo/imageMetadata">Norwich Catherdral from Ethelbert Gate</Title>'),
                         'xmlns="http://xmlns.oracle.com/demo/imageMetadata"'
where m.RESID = 
         select RESID
           from RESOURCE_VIEW
          where equals_path(res,'/home/SCOTT/ImageLibrary/Norwich (3).jpg') = 1
declare
   text CLOB :=
'In the heart of Norwich stands the Cathedral, separated from the busy streets by flint walls and entrance gates, but still a living part of the city. At least three services are held in the Cathedral every day, often sung by the choir. The choristers are pupils of King Edward VI School, which has its daily assembly in the Cathedral. Concerts, lectures and exhibitions also frequently take place here.
The Cathedral was begun in 1096, the vision of Herbert de Losinga, first bishop of Norwich. Building work on the Cathedral, a bishop''s palace and the associated Benedictine monastery continued throughout his life, but the Cathedral was not finally consecrated until 1278. The building is mainly of Caen stone, a pale, honey-coloured limestone brought over from Normandy, but Norfolk flints form the core of the Cathedral, and stone from Northamptonshire was used for medieval additions.
This great church has a Norman ground plan and walls, and a Perpendicular roof and spire, added after a fire caused by lightning destroyed the wooden roof and spire in 1463. The Cathedral spire is 315 ft (96m) high - second only in height to that of Salisbury.';
begin
  update IMAGE_METADATA_TABLE m
     set object_value = insertChildXML
                           object_value,
                           '/imageMetadata',
                           'Description',
                           xmltype('<Description xmlns="http://xmlns.oracle.com/demo/imageMetadata">' || text || '</Description>'),
                           'xmlns="http://xmlns.oracle.com/demo/imageMetadata"'
where m.RESID = 
         select RESID
           from RESOURCE_VIEW
          where equals_path(res,'/home/SCOTT/ImageLibrary/Norwich (3).jpg') = 1
end;
commit
pause
select object_value
  from IMAGE_METADATA_TABLE m, RESOURCE_VIEW r
where m.RESID = r.RESID
   and equals_path(res,'/home/SCOTT/ImageLibrary/Norwich (3).jpg') = 1
pause
alter session Set events='19027 trace name context forever,level 4'
update IMAGE_METADATA_TABLE m
   set object_value = insertChildXML
                         object_value,
                         '/imageMetadata',
                         'Title',
                         xmltype('<Title xmlns="http://xmlns.oracle.com/demo/imageMetadata">Concorde From the Concorde Lounge at British Airways Terminal 1</Title>'),
                         'xmlns="http://xmlns.oracle.com/demo/imageMetadata"'
where m.RESID = 
         select RESID
           from RESOURCE_VIEW
          where equals_path(res,'/home/SCOTT/ImageLibrary/Concorde.jpg') = 1
declare
  narrativeText CLOB := 'Concorde measures 204ft in length - stretching between six and ten inches in-flight due to heating of the airframe. She is painted in a specially developed white paint to accommodate these changes and to dissipate the heat generated by supersonic flight. The wingspan is 83ft 8ins - much less than conventional subsonic aircraft as Concorde flies in totally a different way using "Vortex Lift" to achieve her exceptional performance. The height is 37ft 1ins. The characteristic droop nose is lowered to improve pilots'' visibility for take-off and landing.'
|| CHR(13) || CHR (13) ||
'Power: Concorde''s four engines - specially designed Rolls-Royce/ Snecma Olympus 593s - give more than 38,000lbs of thrust each, with ''reheat''. This adds fuel to the final stage of the engine to produce the extra power required for take-off and the transition to supersonic flight. They are the most powerful pure jet engines flying commercially.'
|| CHR(13) || CHR (13) ||
'Speed: Concorde takes off at 220 knots (250mph) (compared with 165 knots for most subsonic aircraft). She cruises at around 1350mph - more than twice the speed of sound - and at an altitude of up to 60,000 ft (over 11 miles high). A typical London to New York crossing takes a little less than three and a half hours as opposed to about eight hours for a subsonic flight. Travelling Westwards, the five-hour time difference means Concorde effectively arrives before she has taken off. She travels "faster than the sun".'
|| CHR(13) || CHR (13) ||
'Service: More than 2.5 million passengers have flown supersonically on British Airways'' Concorde since she entered commercial service in 1976. The most frequent passenger, an oil company executive, has clocked up almost 70 round trip transatlantic crossings a year.'
|| CHR(13) || CHR (13) ||
'Safety Enhancements: A team of about 250 British Airways'' engineers worked tirelessly, together with the relevant authorities, to further improve safety on board. The engineers and manufacturers have worked closely together to create and install a new Kevlar-rubber lining for Concorde''s wing-based fuel tanks and the addition of specially developed Michelin tyres, as well as strengthened wiring in the undercarriage.'
|| CHR(13) || CHR (13) ||
'History: Supersonic airline research in Europe began in 1956 and resulted in the British and French Governments signing an international treaty for the joint design, development and manufacture of a supersonic airliner six years later. The first prototype was rolled out at Toulouse in 1967 and since then, there have been a number of notable dates in the history of Concorde.'
|| CHR(13) || CHR (13) ||
'2 March 1969: First flight of Concorde 001 from Toulouse France.'
|| CHR(13) || CHR (13) ||
'9 April 1969 :First flight of Concorde 002 from Filton, Bristol, UK to its test centre at Fairford.'
|| CHR(13) || CHR (13) ||
'1 October 1969: Concorde''s first supersonic flight.'
|| CHR(13) || CHR (13) ||
'28 June 1972: British Airways (BOAC) orders five Concordes.'
|| CHR(13) || CHR (13) ||
'20 September 1973: Concorde 002 lands at Dallas/ Fort Worth on first visit to the USA.'
|| CHR(13) || CHR (13) ||
'17 June 1974: Concorde makes its first double Atlantic crossing in one day.'
|| CHR(13) || CHR (13) ||
'5 December 1975: UK Civil Aviation Authority awards Concorde its Certificate of Airworthiness.'
|| CHR(13) || CHR (13) ||
'21 January 1976: British Airways commences commercial supersonic travel from London to Bahrain.'
|| CHR(13) || CHR (13) ||
'22 November 1977: British Airways Concorde''s first London - New York commercial flight.'
|| CHR(13) || CHR (13) ||
'8 November 1986: First round the world flight by a British Airways Concorde - covering 28,238 miles in 29 hours 59 minutes.'
|| CHR(13) || CHR (13) ||
'7 February 1996: Concorde G-BOAD crosses the Atlantic between New York and London in a new record flight time of 2 hours, 52 minutes and 59 seconds.'
|| CHR(13) || CHR (13) ||
'11 August 1999: =Two British Airways Concordes fly in supersonic formation to chase the total eclipse of the sun.';
begin
  update IMAGE_METADATA_TABLE m
     set object_value = insertChildXML
                           object_value,
                           '/imageMetadata',
                           'Description',
                           xmltype('<Description xmlns="http://xmlns.oracle.com/demo/imageMetadata">' || narrativeText || '</Description>'),
                           'xmlns="http://xmlns.oracle.com/demo/imageMetadata"'
   where m.RESID = 
           select RESID
             from RESOURCE_VIEW
            where equals_path(res,'/home/SCOTT/ImageLibrary/Concorde.jpg') = 1
end;
commit
pause
select object_value
  from IMAGE_METADATA_TABLE i, RESOURCE_VIEW r
where i.RESID = r.RESID
   and equals_path(res,'/home/SCOTT/ImageLibrary/Concorde.jpg') = 1
pause
quit

Similar Messages

  • How to update managed metadata column for all file in document library using powershell

    Hi,
    How to update managed metadata column for all file in document library using powershell?
    Any help on it.
    Thanks & REgards
    Poomani Sankaran

    Hi TanPart,
    I have changed the code which you have give in order to get the files from SharePoint 2010 Foundation  Document Library.But i am getting below error in powershell.
    Property 'ListItemCollectionPosition' cannot be found on this object; make sure it exists and is settable.
    Could you tell me which is the issues in it?
    See the code below.
    $web = Get-SPWeb http://ntmoss2010:9090/Site
    $list = $web.Lists["DocLib"]
    $query = New-Object Microsoft.SharePoint.SPQuery
    $query.ViewAttributes = "Scope='Recursive'";
    $query.RowLimit = 2000
    $caml = '<Where><Contains><FieldRef Name="Title" /><Value Type="Text">Process Documents/Delivery</Value></Contains></Where>' +
            '<OrderBy Override="TRUE"><FieldRef Name="ID"/></OrderBy>'
    $query.Query = $caml
    do
        $listItems = $list.GetItems($query)
        $spQuery.ListItemCollectionPosition = $listItems.ListItemCollectionPosition
        foreach($item in $listItems)
            #Cast to SPListItem to avoid ambiguous overload error
            $spItem = [Microsoft.SharePoint.SPListItem]$item;
            Write-Host $spItem.Title       
    while ($spQuery.ListItemCollectionPosition -ne $null)
    Thanks & Regards
    Poomani Sankaran

  • How to hide custom metadata field in custom profies ??

    hi,
    how to hide custom metadata dropdown list in a custom profile based on choosing the security group.
    ex: if i choose xxx security group, custom metadata dropdown should not appeared, for remaining security groups it should be visible.
    so, Based on criteria, custom metadata should be hidden in custom profiles..
    how to achieve it ?? where and how to configure ??
    Detail guidance should be required
    Thanks in advance

    You cannot do this through profiles alone if I understand you correctly.
    If I load a check in page, choose a security group and at this moment want a custom metadata field to disappear then you are beyond what profiles offers.
    Rules evaluation can only be based on information that is know at the time the page is requested. That means in order for this to work you would need to make security group an non editable field and have a set of profiles for each security group.
    The alternative is to customize the UI with soem DHTML or AJAX
    Tim

  • IS-RETAIL: How to update custom enhancement field using BAPI?

    Hi gurus,
    Like ECC BAPI: BAPI_MATERIAL_SAVEDATA,
    This BAPI(BAPI_MATERIAL_MAINTAINDATA_RT) is specific for IS-RETAIL to create and update material master data.
    But now If I append one custom field "ZFIELD" to end of table MARA, my question is how to update this custom enhancement field(ZFIELD) using BAPI(BAPI_MATERIAL_MAINTAINDATA_RT)
    Thanks in advance!

    Hi DongHai,
    I suggest you create your own BAPI. Just copy the codes in BAPI_MATERIAL_MAINTAINDATA_RT and add your custom fields. If you want to append the data of the custom field in table MARA, first, you have to create a structure table then goto SE11, type MARA and display. Click the APPEND STRUCTURE then choose the structure that you've created. Hope this will help.
    Rewards if useful
    Regards,
    Mark

  • Adobe CQ5.5 Digital Asset - Delete default metadata and how to create custom metadata

    Hi
    I am trying to create custom metadata for all format of assets (PDF, DOC, TXT, etc.,). I have created the dam folder under apps node as below:-
    Step 1:  /apps/dam/content/asseteditors/formitems
    Step 2:  Included the four property as textfield and selection according to our requirement under formitems
    Step 3:  I changed the cq:allowedTemplates from /content/dam/jcr:content
    Step 4:  I tried to upload the asset, I could get the custom metadata for Txt, Doc, PPT, XLSX
    Step 5:  But for JPG, PNG and PDF I am getting the default metadata which is huge list.
    How to control this one? I want my custom metadata only displayed for creation assets. Find the attached.
    CRX - Custom Template Configured
    CRX - Custom Metadata populated for ZIP format
    CRX - Custom Metadata not populated for PDF format

    Hi,
    If you read the description under section http://dev.day.com/docs/en/cq/current/dam/how_to_edit_metadata.html#Creating New Metadata Property for Assets you will find yout the format for images and its different format stores at different location. So to deal with image metadata plz try below
    1. Create a "image" node under "/apps/dam/content/asseteditors" as sling folder and configure it similar to "/apps/dam/content/asseteditors"
    2. under this folder again copy paste the "/libs/dam/content/asseteditors/formitems" and customize it accordingly
    Above will help you to manage with all types of images. Now if you want to have separate group of property for different image types then similar to above you have to create format node inside image folder for example jpg file type create a node with name "jpeg" under "image" node & configure similarly as you did for image.
    I hope it will help you to proceed. Please let me know for more information.
    Thanks,
    Pawan

  • How To Set Custom Metadata Programmatically?

    I could have sworn there was a way, but I sure can't figure it out right now - anybody know if or how?
    PS - I thought at first catalog:setPropertyForPlugin would do it, but it seems to just set some invisible property, not the viewable, filterable, custom metadata kind.
    Thanks,
    Rob

    To build on John's reply, double-check that the metadata definition declares the field browsable and searchable, e.g.
        metadataFieldsForPhotos = {
            {id = 'type',
             title = "Type",
             dataType = 'string',
             browsable = true,
             searchable = true},

  • How to rename Custom Metadata Field?

    I have some pics with custom metadata field "gadget brand", i with to rename the field name to "brand", how can i do that? I tried to rename in the custom metadata manager, but it doesn't apply the change.

    Don't believe you it will allow you to rename it.
    You're going to have to create a new field with the name you want and copy the data over. Unfortunately Aperture doesn't have any built in means of copying metadata from one field to another. Applescript however could do it fairly easily.

  • How to export custom metadata fields

    How do I export custom metadata fields (or even the DATE) to a text or spreadsheet? Why does Aperture have dozens of metadata choices, but only allows a few to be exported?

    You can try Automator which must be installed already in your computer. Create a new workflow, on the left pane select Aperture to see a list of actions, select "get selected items" and "extract metadata", and drag both to the right most pane. there you'll choose the Tag names to extract from the images already selected inside aperture and choose an output method, tabbed text should work fine for a spreadsheet. Hope it works.

  • [CS3 JS] How To Access Custom Metadata?

    I have InCopy documents that contain custom XMP metadata in two namespaces, Dublin Core and PRISM, e.g.:<br /><br />    ...<br />    <rdf:Description<br />      rdf:about=""><br />      <dc:format<br />        xmlns:dc="http://purl.org/dc/elements/1.1/">application/x-incopy</dc:format><br />      <dc:title>Chickens and You</dc:title><br />    </rdf:Description><br />    <rdf:Description<br />      rdf:about=""><br />      <prism:publicationName<br />        xmlns:prism="http://prismstandard.org/namespaces/basic/1.2/"<br />        >Poultry Daily</prism:publicationName><br />    </rdf:Description><br />    ...<br /><br />In my JavaScript, I can access the Dublin core values but cannot access the PRISM values and I'm not sure why not.<br /><br />For example, I have this:<br /><br />doc = app.activeDocument;<br />metadata = doc.metadataPreferences;<br /><br />namespaces["dc"] = "http://purl.org/dc/elements/1.1/";<br />namespaces["prism"] = "http://prismstandard.org/namespaces/basic/1.2/";<br /><br />$.writeln("dc:title=" + <br />     metadata.getProperty(namespaces["dc"], <br />          "title/*[1]"))<br />// Returns expected result "Chickens and You"<br /><br />$.writeln("prism:publicationName=" + <br />     metadata.getProperty(namespaces["prism"], <br />          "publicationName/*[1]"))<br />// Returns unexpected empty result, should be "Poultry Daily".<br /><br />If I do metadata.save() I see the PRISM metadata in the saved result:<br /><br />     <rdf:Description rdf:about=""<br />            xmlns:prism="http://prismstandard.org/namespaces/basic/1.2/"><br />         <prism:publicationName>Poultry Daily</prism:publicationName><br />     </rdf:Description><br /><br />So I'm sort of at a loss but I suspect that I don't really understand what the path value should be--I haven't been able to find any clear documentation on what the path is addressing or how its actually interpreted.<br /><br />What am I missing or doing wrong?<br /><br />Thanks,<br /><br />Eliot

    [email protected] wrote:
    > Dude, I started that thread :-)
    Missed that. It's been a long week.
    The problem is this line (probably).
    metadata.getProperty(namespaces["prism"], "publicationName/*[1]")
    You apparently copied the syntax from dc:title in the previous line. dc:title is
    an 'Lang Alt' kind of property which is, effectively, an array. Your
    prism:publicationName is a simple value property. I suspect that the "[1]"
    syntax (and possible the "/*" before it) are what's causing problems.
    I don't recall seeing docs for this either.
    -X

  • Flash CS5.5[Publish Settings]: How to include custom Metadata tags in swf?

    In Flash CS5, the 'Publish Settings' for the fla had an 'Export SWC' checkbox that took care of that.
    The option is missing. Why was it removed and how can  that be done in 5.5?

    Thanks sinious, but, it doesn't work.
    Let me elaborate on what I want to do:
    I'm trying to create a swf in Flash CS5.5, that's using a flex library (swc) that relies on Metadata tags (anotations).
    I need to use the metadata tags in my as3 code (in the fla), and They need to be compiled into the swf (by Flash CS5.5 compiler...).
    Although, when I load that swf, the metadata tags aren't compiled into it (I'm using describeType to check if tags are available in the swf).
    In flex, I would use the '-kepp-as3-metadata+=' compiler setting to do that, in Flash CS4 & CS5 I used the 'Export SWC' in the publish settings, but that's removed (WHY???).
    Checking XMP Metadata didn't change that, the tags are still not included in the compiled swf.
    Anyone?

  • How to save custom metadata display in CS4.2?

    I know this has been asked in the past, but no one has come up with an answer I can find.
    Here's what happens: in the project bin, I click Metadata Display, click the Premiere Project Metadata line, unclick the metadata I don't want to see, save the settings as My Setting, and go on with my day.  The settings remain the same UNTIL I close the propject and open it back up and all the settings go back to default.  So I open the Metadata Display back up from the project bin to reload my saved, custom settings...the (custom) bar is greyed out and not selectable, so I have to go through and do this all over.
    Essentially, Premiere is NOT saving the custom settings.  Why is this happening?  It worked when I had 4.1.  What's going on?

    do a chain and endchain on the fields.Then insert the fields in to the required database.

  • How to make custom Metadata accessible in Text Template Editor ?

    Hi all.
    I used Lightroom SDK to create a plugin generating custom set of Metadata (for LR5) to manage images as produced items (printed and framed photos).
    In order to be able to create usefull lists of items, I would need to be able to print this metadata fields on contact Sheets.
    This is the only functionality that prevents me from using Lightroom as a database for produced artworks, beeing able to manage exhibitions, stock locations, sales etc...
    Guess this means I have to make those new fields accessible in the Text Template Editor that allows user to compose an aggregated text from various type of metadata for printing or slideshows.
    But seems that only the original sets of metadata appears in Text Template Editor, not the one created by my plugin.
    Is there a way to add this functionnality to my plugin ?
    Thank you very much.

    First let me say I have no idea what you mean by Text Template Editor.
    mbrch wrote:
    Is there a way to add this functionnality to my plugin ?
    3 ways:
    ======
    1. If metadata definitions are available in metadata provider module without running plugin initialization function (i.e. as on-the-fly compilable lua), then Jeffrey Friedl's Metadata Viewing Preset Editor will support it. (this is the normal case, the other case would be if plugin init computes a global variable that is returned by metadata provider module instead).
    2. You can edit a metadata viewing preset manually, by placing a .lrtemplate file in 'Metadata Field Lists' folder - in with your other presets (is that what you meant by text template editor?). - see example below.
    3. Define a tagset factory for your plugin and return the metdata viewing preset options from the tagset factory implementation file - there are instructions in the programmer's guide.
    Example below:
    return {
       items = {
             formatter = "com.adobe.label",
             label = "File/Folder"
          "com.robcole.photoName",
          "com.robcole.folderPath",
             formatter = "com.adobe.label",
             label = ""
          'com.robcole.developSettings.ProcessVersion', -- individual develop settings can be included like this.
          'com.robcole.developSettings.CameraProfile', -- individual develop settings can be included like this.
             formatter = "com.adobe.label",
             label = ""
             formatter = "com.adobe.label",
             label = "Exif Metadata"
          'com.robcole.exif.AELockButton',
          'com.robcole.exif.ActiveD-Lighting',
          -- add more here...
          'com.robcole.exif.' -- "help" item - remove this item once you've got the hang of this...
       title = "Exif Select",
       id = "Exif_Select_382790710"
    Rob

  • How To Update Custom ItemRenderer (Image) on DataGrid Edit

    I have an DataGrid with 2 columns, column 1 called "Name" and column 2 called "Actions".
    The "Name" column contains editable text and the "Actions" column uses a (inline) custom ItemRenderer which displays 2 icon images ( for Edit and Delete). All works fine. Clicking Edit or Delete calls the corrosponding outerDocument method.
    The feature I am trying to add is as follows: when someone double-clicks on the text in the Name column to edit it, I would like the edit icon in the Actions column to ( grow/shrink, change color  - or some such indication/reminder to click it ). Not seeing how to do this with the inline ItemRenderer, I created a custom item renderer class and, in that class, use mx:Resize to perform the "grow/shrink". I created a method called "pulse()" and, from within that renderer, all works well. ( for testing, I wired the icons click event to the pulse() method ). However, now I am not sure how to call that ItemRenderers "pulse()" method to perform the effect from the main DataGrid (when the user double-clicks on Name field to edit).
    The tried using the DataGrid's "itemEditBegin", which fires correctly, but from that point I am not sure how to access the selected rows edit icon in the "Action" column. ( to call its pulse() ) method.
    So any suggestions how I can achieve my end result? Being able to manipulate the edit icon in the "Actions" column, when the user double-clicks (edits) that row's "Name" column?
    If I'm going about it all wrong, feel free to offer alternative solutions.
    Any help would be appreciated.
    Thanks,
    ~e

    Hi,
      Check the  BAPI_MATERIAL_SAVEDATA ,in the BAPI  is there a table parameter EXTENSIONIN ?
    which you can use to pass the values for user defined fields to the BAPI..
    Regards
    Kiran Sure

  • User - exit for STKO table (PCSD0003). How to update customer field.

    Hello,
    I made a user - exit for STKO table.
    It works like a formula field - calculate total weights of the specification components.
    But there is a problem!
    When I add new components  into my specification  or change them, my customer field is now calculated.
    I always need to click a Customer tag and explode a user subscreen. Is there any way to sort the problem out?
    I want to recalculate my customer field every time I change components?

    Hi,
    There is a specific user-exit for delivery-creation/delivery processing/change delivery status.
    the program name is MV50AFZ1. Inside this exit, there is a particular sub-routine called as
    FORM USEREXIT_MOVE_FIELD_TO_LIPS.
    endform.
    May be probably you can try this. This also needs an access key for changing the SAP standard program.
    Another way is you can use the BADI : LE_SHP_DELIVERY_PROC
    This BADI influences processing of delivery data, during creation and changing of deliveries at specific points described in the interface. The BAdI methods enable you to read, write, determine, delete, and save your own delivery-related data, and to change the standard delivery data.
    Lakshminarayanan.
    P.S. Mark all helpful answers for points

  • How do I synchronise metadata from LR to Bridge

    Hello. I have W7 64 bit, CS5 with ACR6.1 and LR 2.7. My Leica camera captures as DNG natively. I use 'Convert to DNG' to import in order to take advantage of the lossless compression. I understand that the sidecar XMP files are not applicable and that the metadata is written into the DNG header. That is fine by me, it should ensure that the metadata is always with my DNGs but I'm unsure how it affects the validity of any instructions I have found so far.
    Currently I am using both ACR and LR to develop files in order to take advantage of the new features and processing until I can get LR3.
    I want to synchronise develop settings. I have learnt how to updated the metadata for files developed in ACR6.1 when I open them in LR2.7 but I cannot work out how to make the LR develop settings visible when I open the files in Bridge.
    Any suggestions would be greatly appreciated. I have been unable to find the information in any of the forums or Help thus far.
    I'm also unsure if this is the best forum to post this, but didn't want to cross post. If I'm best to post to another forum please excuse me and any suggestions would be most welcome.

    Hi Curt. Thank you. Yes Lightroom has several options for that in its metadata menu as well as a preference to automatically write changes into XMP. However when I make an edit to a DNG in LR, I am not seeing the changes when I preview the DNG in Bridge (or open it from there in ACR). I guess that I am looking for exactly that kind of menu option or preference in Bridge.
    I have ignore XMP sidecar files UNCHECKED in DNG handling and Update embedded JPEG previews checked in Camera Raw preferences.
    It's confusing also because DNG files don't actually have sidecar files for XMP (it goes in the header inside the file instead) but the other option is store in Camera Raw database. That sounds less right than the other!

Maybe you are looking for