Custom Schema in XMP

How does LR handle custom schema or fields in XMP?
I will have files coming in with added XMP fields. Will LR keep and make visible the custom tags? Might it erase the tags when copies to the XMP?
Also, can I create custom tags and write them to the XMP?
Thanks for your help!

It stores the custom data in its database, but doesn't use it at all.
I suggest you try this for yourself. Add some custom metadata outside LR, eg in a Bridge File Info panel, import the file into LR, and then delete those field values in Bridge. Now in LR make an adjustment and select Metadata > XMP > Export. In Bridge, you should see your custom fields again.
John

Similar Messages

  • Adding drop-down list in a custom schema

    Is it possible to create a field with a drop-down list of items in a Prelude custom schema? Or, perhaps the ability is provided in the styles: (Integer, Real, Text, Boolean) and I am just not selecting or using those properly.
    I notice it is done in some Adobe-provided meta tags, like this one named >Script...
    Thanks!
    Bobby

    Hi Bobby -
    Unfortunately it is not currently possible to create an array of items for a given custom metadata field. We do have some feature backlog items in our XMP team to look at making such things possible in the future.
    Regards,
    Michael

  • Error in Including the Custom function in Custom schema ...

    Hi Experts ,
                   I developed a time custom Function through PE04 ,  Z_5RT and included in Custom Schema , ZM04, while executing in PT60 using the schema ZM04 an error coming . Any configuration required to include custom function in a schema .
    Thanks and regards
    Renjith MP

    You are just going to place the custom function in the 'Func' field of schema.
    Check the counry assignment, parameters & finally you have to activate the function. Check T52A0 for correct internal number.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/96/79bc54b27911d1a5400000e83ddb11/frameset.htm
    Regards
    N Navaneethan
    Edited by: Navaneethan on Dec 15, 2008 4:30 PM

  • Unable to create a QUEUE in custom schema

    Hi,
    I was able to create a Type & queue table in custom schema, but using them was unable to create a QUEUE in custom schema
    I'm using the following piece
    DBMS_AQADM.CREATE_QUEUE(queue_name => 'XXXXXX_QUEUE',
    queue_table => 'XXXXXX_QUEUE_TABLE'
    Whereas in APPS schema I'm able to create the same queue.
    Pls advice ...

    Hi,
    The only reason is that, we create all the custom objects (owner as custom schema), and a synonym in APPS.
    I did not get any error, but the queue, is not getting created
    Following are the scripts used
    CREATE OR REPLACE TYPE 'XXXXXX_QUEUE_TYPE
    AS OBJECT (TYPE VARCHAR2(15));
    BEGIN
    DBMS_AQADM.CREATE_QUEUE_TABLE (queue_table => 'XXXXXX_QUEUE_TABLE',
    queue_payload_type => 'XXXXXX_QUEUE_TYPE'
    END;
    BEGIN
    DBMS_AQADM.CREATE_QUEUE(queue_name => 'XXXXXX_QUEUE',
    queue_table => 'XXXXXX_QUEUE_TABLE'
    END;
    BEGIN
    DBMS_AQADM.START_QUEUE(queue_name => 'XXXXXX_QUEUE'
    END;
    Thanks.....

  • What's a good way to manage custom schema for DS  5.1?

    What's a good way to manage custom schema?
    Custom Schema for Object Class and Attributes
    The reason I ask this is because there might be a need in the future where I need to export those custome schema into different branded directory server. I just want to make this as painless as possible.
    Right now, I thought of 2 options
    1) Create my own LDIF file with my custom attributes and object classes, so if one day I need to export to another directory server, I can just copy that custom created LDIF file over. (Will this work?)
    2) Create a JAVA application using JNDI. What this Java App. will do is read through a XML file and create those object classes and attributes on-the-fly. (of course, the XML structure will be predefined by me, so that my Java App. will be able to parse through it correctly. Will this work?)
    Anymore suggestion? I would want to hear more advices and suggestions.
    Also, I assume that will work even with replication. All I need to update is the master server, and the slaves will replicate automatically.
    Thank you very much! :)

    Demo: I'm using the nul character to represent the end of the word, so that the data structure can represent that "hell" and "hello" are both in the vocabulary:
    import java.util.*;
    class Node {
        private SortedMap<Character, Node> children = new TreeMap<Character, Node>();
        //0 <= index <= word.length()
        private void add(String word, int index) {
            if (index == word.length()) {
                children.put(Character.valueOf('\u0000'), null);
            } else {
                char ch = word.charAt(index);
                Node child = children.get(ch);
                if (child == null) {
                    children.put(ch, child = new Node());
                child.add(word, index+1);
        public void add(String word) {
            if (word == null || word.length()==0)
                throw new IllegalArgumentException();
            add(word, 0);
        public String toString() {
            return children.toString();
    public class Example {
        public static void main(String[] args) throws Exception {
            Node root = new Node();
            root.add("hello");
            root.add("how");
            root.add("who");
            root.add("hell");
            System.out.println(root.toString());
    }

  • MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

    The MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..
    We are passing the required values to the ATP API.
    1) The x_return_status is showing as 'S' i.e. success but x_atp_rec.Requested_Date_Quantity is not returning any value.
    2) If there is a grant issue how to identify it.
    Regards,
        Vinod Annukaran

    Pl do not post duplicates -0 MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

  • Problem creating a form on a table from another custom schema

    Hi,
    I have a table in a custom schema that i have granted SELECT, UPDATE, INSERT and DELETE to our apex schema. I have created a synonym for this table under the apex schema but I can't build a form for it. If i try adding the form when creating the application, it gives me an error about not having a primary key on the table, which i do. If i create the application with a blank page and then try to add the form, it gives me an error that the table must contain at least one column, which it contains 12. If i view the table in the SQL Workshop, it gives an accurate count of rows in the table but doesn't provide any information about the table and doesn't display the data.
    If I login to TOAD under our apex schema and view the synonym object, i can see all of the information about the table - the columns, the primary key, etc. But I can't see it inside the Application Express app.
    Can anyone tell me why this is and what i can do to build a form on this shared table?
    Thanks,
    Troy

    Troy,
    I suggest you get rid of the synonym and then don't use the Create Application wizard for this purpose. Instead, create the application, then use a create page or create form wizard. It should first ask you for the name of the schema that contains the table. If you get that far, you should be on your way.
    Scott

  • Query on Custom schema table getting 'Do You want to save changes' message

    Hi all,
    I am getting the error message whenever I query from the custom table. Here is the description of the issue.
    1. I have a button on the first block. When the user clicks on this button , execute_query is called on another block. Then the user getting the message "do you want to save the changes" . Although there are no changes made on the form.
    2. The second block is based on a custom table defined on the custom schema.
    3. Created public synonym for this table and also gave the all the grants to apps schema on this table.
    4. This error was not coming before when the second block is based on Apps schema table.
    Any idea on how to fix this.
    Thanks

    I doubt the problem is related to a schema or public synonym. The message is appearing because the value for an item is being changed after your query executes.
    First check to make sure that the blocks that are not based on a table are set to No. See the Database Data Block Property.
    If that doesn't solve the problem, then run the debugger and watch to see what item is changing. You may be doing something in a trigger.

  • Gather schema stats not running for custom schema's in EBS 12.1.1

    Hi All,
    We are running Gather schema stats program periodically in our EBS system with Schama name as "ALL", but it is not generating the statistics for the custom schema. We have custom schema registered in our EBS application. Can you please let us know if there is any issue with our setup or this is standard behaviour of Gather schama stats concurrent program.
    Thanks,

    Hi,
    At how much percent ur using with Gather schema stats program like 10%,20%(in Gather schema stats program form)...I think there are no updates on the tables of that custom schema thats why the gather schema progam ignored it..can u check were there updates?
    Regards

  • Updating custom schema created using RCU

    I followed the following chapter from RCU user guide to create a custom schema using RCU:
    [Extending Repository Creation Utility to Configure Custom Application Repositories|http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14259/rcu_extend.htm]
    RCU allows only two operations - 1. create a new schema OR 2. drop a schema.
    Can RCU be used to update or modify a custom schema, which has been created using RCU itself?
    The use case is: update certain rows in a few tables of the custom schema, whenever there is a fix.
    Basically we need to deliver patches (insert scripts containing the fixed or corrected data) to the custom schema created using RCU.
    Does RCU support this use case?
    Thanks,
    Mahendra
    Edited by: Mahendra Varman on Jun 8, 2011 5:10 PM

    Thanks for the suggestions. Having a bad day with this today.
    Unfortunately, it did not work. I had to re-install the whole thing with the repository in an 11g database and that didn't work either! (see OBIEE 11g: Cannot log into BI Publisher after fresh Install
    Thanks.

  • How to find custom schema?

    Hello there,
    I want to do a command line search to list all of my custom schema which we are using in the 99user.ldif file on Sun ONE 5.2Patch4.
    I know how to add/mod/del using console, but i want to list all the extended objectclasses and attributes.
    Can anyone tell me the search command? I appreciate it.
    Thanks
    SS

    There is no easy way to do this. Even if you only look at attributes and objectClasses which have "USER DEFINED" ... you'll still get out of the box 5.2 Patch 4 Directory Server schema elements.
    Here's what we did to work around the problem.
    Dump the schema in LDIF format (using the -L flag with ldapsearch to get the entries in attribute: value format) and store to a file. Do this on your existing installation / deployment (the one with the custom attributes).
    Dump the schema in LDIF format from a vanilla 5.2 Patch 4 install, with no modifications made at all to the schema, out to another file.
    Join the lines in the two files (they're in LDIF format, so they wrap lines with a leading space) ... use the following command:
    sed -e :a -e '$!N;s/\n //;ta' -e 'P;D' < myschema > $myschema.joined
    sed -e :a -e '$!N;s/\n //;ta' -e 'P;D' < sunschema > $sunschema.joined
    Sort each file.
    sort myschema.joined > myschema.joined.sorted
    sort sunschema.joined > sunschema.joined.sorted
    Find the differences in the two files. These should be your custom attributes and objectClasses, with the server schema elements removed. All you have to do is cleanup the output (the diff utility will add some "<" and ">" characters to the beginnings of the lines).
    diff myschema.joined.sorted sunschema.joined.sorted > myschema_extensions.txt
    I really hope this helps. I don't think there is any easier way to do this, but I'll watch this thread hoping I get proved wrong! :-)
    Cheers,
    sn3ak3rp1mp

  • What to take into account to create a custom schema?

    Hello, we are going to start the process of migrating from Oracle E-business suites R11.5.10.2 to R12; we have been doing our custom applications into the APPS schema. For this upgrade, we would like to start fresh and move all our custom applications to a custom schema to have control of all the customizations. I need your feedback on what are the things we need to take into account to accomplish that.
    Please let me know anything that comes to your mind on what to consider, and if you have a good guidance on how to do it should be great.
    Thank you.

    user8969211 wrote:
    Hello, we are going to start the process of migrating from Oracle E-business suites R11.5.10.2 to R12; we have been doing our custom applications into the APPS schema. For this upgrade, we would like to start fresh and move all our custom applications to a custom schema to have control of all the customizations. I need your feedback on what are the things we need to take into account to accomplish that.
    Please let me know anything that comes to your mind on what to consider, and if you have a good guidance on how to do it should be great.Please see these docs/links.
    Integrating Custom Applications with Oracle Applications [ID 176852.1]
    Step By Step Guide to Creating a Custom Application in Applications 11i [ID 216589.1]
    Integrating Custom Objects and Schemas
    http://docs.oracle.com/cd/E18727_01/doc.121/e12897/T302934T458264.htm#4164796
    Can't Open Custom Forms After R12 Upgrade [ID 552010.1]
    How To Upgrade 11i Custom Forms To R12 [ID 563258.1]
    Accessing Custom Forms After Upgrading From To R12. [ID 451934.1]
    Do Not Compile EBS R12 Reports Using rwconverter.sh or Reports Builder from IDS 10gR2 [ID 786794.1]
    Using the OracleAS 10.1.2 Forms and Reports Builders with Oracle Applications Release 12 [ID 444248.1]
    Thanks,
    Hussein

  • How to know what are the privs for one custom schema?

    how to know what are the privs for one custom schema?
    please suggest me......

    Hi,
    Check this user_sys_privs
    Cheers
    Pavan Kumar N

  • Custom schema separate file.

    Goal: To keep custom schema separate from schema patching that takes place in 99user.ldif ( JES patches often update schema here ).
    I've created a separate file, put the custom schema into it, stopped and started LDAP. The error log is giving me the following warning message:
    WARNING<4154> - DN - conn=-1 op=-1 msgId=-1 - DN Normalize Lazy normalization of schema
    Is there some sort of criteria my file is missing? File is owned by Directory Server user and group and has the same permissions as the other schema files. It contains the following elements / format:
    dn: schema
    objectclass: top
    objectclass: ldapSubentry
    objectclass: subschema
    attributeTypes:
    objectClasses:
    Additional question:
    Does the 99user.ldif file have to be the last file to be loaded into the schema or could you have something like 99www.ldif?

    I found the fix. I was missing the "cn=" in the DN. For some reason everytime I looked at it I just didn't see it was missing. TGIF.

  • Custome SCHEMA  Files

    Can anybody tell how to import the custom schema on directory server 5.1 SP1 on solaris 8. I created a ldif file contains my custom attributes and objectclass and stored in "server-root/config/schema/" directory, i do not want to user 99user.ldif file". Instead of 99user.ldif , i created my own ldif file, even the format is right and stop and started slapd serveral times. iam not seeing my custom objectclass and attribute in the directory server.
    Can anybody tell is there any thing iam missing instead of just creating file . Do i need to specify any where in the files or in directory that i have a custom objectclass to pick ??????
    Appricate any response

    This is my mdsconfig.ldif file which i described before .
    dn: cn=schema
    objectClass: top
    objectClass: ldapSubentry
    objectClass: subschema
    cn: schema
    aci: (target="ldap:///cn=schema")(targetattr !="aci")(version 3.0;acl "anonymo
    us, no acis"; allow (read, search, compare) userdn = "ldap:///anyone";)
    attributeTypes: ( xxxx-oid NAME 'xxxx' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-
    ORIGIN 'user defined1' )
    objectClasses: ( xxxx-oid NAME 'xxxx' DESC 'MY objectclass' SUP top MAY ( xxxx
    ) X-ORIGIN 'user defined2' )
    nsSchemaCSN: 3e6607a3000000000000
    Any response is appriciate

Maybe you are looking for

  • Asset accounting revaluation and period control

    Hi, does somebody know how is the period control determined for Revaluation? For example, I make manual revaluation in ABAW with asset value date 01.01.2007 and I want the effect on the depreciation to begin from the same month. Now it begins from ne

  • XSL Extension Functions

    Is it possible to write our own xsl Extension Functions in Java using the oracle 9i xsl translator? If yes, how would I write the namespace to point to my class? I was able to do it with xalan, but unable so far with the oracle xslt. TIA.

  • My older version of macbook pro

    i have come to find my donated macbook pro has version version snow leopard 10.6.3 on it presently and was told by the donator that we need to upgrade to mavericks 10.9.... something lol. anyway i already did an update request and it came back saying

  • Database dead

    Hello guys I have oracle 8i databse under windows NT.It suddenly stop responding!!!!.I'm obliged to restart server. Any idea what can cause such problem.Like Os or lack of space.I check log file find nothing informative. any idea regards

  • No opening pdf on pc or e-book

    I cannot find my way in all these technical forums and solutions in the english language so I don't know how to solve my problem which is: 1. I cannot open new pdf files via internet or old files on my pc; if I try to, there appears a big line on my