Extracting document metadata from CM repository

Dear Experts,
Need your help for extracting the document meta data.
We have many documents in our CM repository (NW2004s, EP 7.0, SP14) and we want to migrate those documents. Till now with the help of "GetRepository" webservice "Get content" property we are able to extract Document properties such as
1. Document size
2. Document type
3. Author
We are still struggling to get important properties such as Access right, Subscription and life time of the folder.
Could any one guide me in this please?
Thanks and regards,
Pradnya

Garth,
Thanks for letting us know - we'll fix the link. In the meantime take a look at the "Warehouse Builder Design Repository Public Views" in OWB User Guide http://download-west.oracle.com/docs/html/B12146_01/d_pub.htm#sthref3736
Nikolai Rochnik

Similar Messages

  • Extract XMP metadata from specific Photoshop Layer in After Effects

    How do it extract XMP metadata from specific Photoshop Layer in After Effects?
    I am just getting my hands dirty with metadata.
    I know it is possible to attack metadata to a layer/layerset in Photoshop, but how to I get it out in After Effects.
    Here is the process.
    I create BunchaLayers.psd.
    Using the PerLayerMetaData.jsx file attached.
    I use the setCommMetadata("something") function to attacked metadata to a selected layer.
    I know that is is there because I check it using the exportLayerMetadata().
    I save and imprt BunchaLayers.psd into AE as a comp.
    Here I am lost.
    I select my layer in the project window and check the XMP metadata window.
    I can't find my comment.
    Is the XMP data actually attached to the layer I imported in AE?
    I want to be able to select the layer and see that the data is attached.  Is this possible?
    If it is will it work on layersets (comps in AE)?
    I would appreciate any layer specific XMP insight.
    Thanks for looking.
    - Josh

    John Nack on Adobe : Per-layer metadata comes to Photoshop
    This was the article that made me think this might be possible.
    There is also the preference to Create Markers From Metadata
    ["Metadata"]
              "CreateLayerMarkersFromFootageXMP" = 01
    Which made me wonder if there is a way to create the metadata in the first place that made it something AE would read and automatically change to layer markers.
    Any ideas?

  • Extract document data from sap-plm (sap database) to windchill

    Hi,
    Can i  extract document data from sap-plm (sap database) to windchill using draw_extract fm??? if yes how to proceed....
    Thanks and regards,
    santhosh

    Hi Santhosh,
    You can refer the below links:
    /people/harrison.holland5/blog/2006/11/27/mdm-syndication
    /people/harrison.holland5/blog/2006/12/20/xi-configuration-for-mdm-integration--sample-scenario
    Hope it helps.
    Thanks,
    Priti.

  • Performance issue while fetching metadata from Informatica Repository

    I'm working on Informatica 8.6(ETL tool) which contains its own repository to save metadata and using their Mapiing SDK API's I'm developing a java application which fetches the objects from the repository.
    For this purpose by using "mapfwk.jar", i'm first connecting to the repository using RepositoryConnectionManager class and then at the time of fetching the metadata i used getFolder, getSource & getTarget functions.
    Issue: Program is taking to much time for fetching the folders. The time taken by it depends on the number of metadata objects present in it,i.e. as object number increases, time increases.
    Please advise how to reduce time for fetching metadata from repository.
    Source Code:
    #1 - Code for connecting to repository
    protected static String PC_CLIENT_INSTALL_PATH = "E:\\Informatica\\PowerCenter8.6.0\\client\\bin";
         protected static String TARGET_REPO_NAME = "test_rep";
         protected static String REPO_SERVER_HOST = "blrdxp-nfadate";
         protected static String REPO_SERVER_PORT = "6001";
         protected static String ADMIN_USERNAME = "Administrator";
         protected static String ADMIN_PASSWORD = "Administrator";
         protected static String REPO_SERVER_DOMAIN_NAME = "Domain_blrdxp-nfadate";
    protected void initializeRepositoryProps(){
    CachedRepositoryConnectionManager rpMgr = new CachedRepositoryConnectionManager(new PmrepRepositoryConnectionManager());
                      RepoProperties repoProp = new RepoProperties();
                      repoProp.setProperty(RepoPropsConstant.PC_CLIENT_INSTALL_PATH, PC_CLIENT_INSTALL_PATH);
                      repoProp.setProperty(RepoPropsConstant.TARGET_REPO_NAME, TARGET_REPO_NAME);
                      repoProp.setProperty(RepoPropsConstant.REPO_SERVER_DOMAIN_NAME, REPO_SERVER_DOMAIN_NAME);
                      repoProp.setProperty(RepoPropsConstant.REPO_SERVER_HOST, REPO_SERVER_HOST);
                      repoProp.setProperty(RepoPropsConstant.REPO_SERVER_PORT, REPO_SERVER_PORT);
                      repoProp.setProperty(RepoPropsConstant.ADMIN_USERNAME, ADMIN_USERNAME);
                      repoProp.setProperty(RepoPropsConstant.ADMIN_PASSWORD, ADMIN_PASSWORD);
                      rep.setProperties(repoProp);
                      rep.setRepositoryConnectionManager(rpMgr);
    }#2 - Code for fetching metadata
    Vector<Folder> rep_FetchedFolders = new Vector<Folder>();
    public void fetchRepositoryFolders(){
              initializeRepositoryProps();
              System.out.println("Repository Properties set");
              //To fetch Folder
                    Vector<Folder> folders = new Vector<Folder>();
              folders = (Vector<Folder>)rep.getFolder();
                    for(int i=1 ; i < folders.size(); i++){
               Folder t_folder = new Folder(); 
               t_folder.setName(((Folder)folders.get(i)).getName());
               Vector listOfSources = ((Folder)folders.get((i))).getSource();
                            //To fetch Sources from folder
                   for(int b=0; b<listOfSources.size();b++){
                    Source src = ((Source)listOfSources.get(b));
                    t_folder.addSource(src);
              Vector listOfTargets = ((Folder)folders.get((i))).getTarget();
                            //To fetch Sources from folder
                   for(int b=0; b<listOfTargets.size();b++){
                     Target trg = ((Target)listOfTargets.get(b));
                     t_folder.addTarget(trg);
                   rep_FetchedFolders.addElement(t_folder);
              }

    Hi neel007,
    Just use a List instead of a Vector, it's more performant :
    List<Folder> rep_FetchedFolders = new ArrayList<Folder>();If you need to synchronize your list, then
    List<Folder> rep_FetchedFolders = Collections.synchronizedList(new ArrayList<Folder>());Also, if you're using Java 5 or higher and if you're sure listOfTargets contains only Target objects, instead of this
    for(int b=0; b<listOfTargets.size();b++){
       Target trg = ((Target)listOfTargets.get(b));
       t_folder.addTarget(trg);
    }you may do this :
    for (Target trg : listOfTargets) {
       t_folder.addTarget(trg);
    }Edited by: Chicon on May 18, 2009 7:29 AM
    Edited by: Chicon on May 18, 2009 7:35 AM

  • I'm using LR 4.4.  How do I extract the metadata from my images and export it into Excel?

    I want to extract the metadata I have added to my images and export it into an Excel spreadsheet.  Can this be done within LR4.4?  If the software doesn't have a function for this is there another way to do it?
    Thanks for any help you can offer.

    JB's ListView is the most straight-forward solution, but
    ConfidentialInformant
    allows for full customization (e.g. if you want to pick and choose custom metadata fields, or export more fields than ListView supports (10), or tweak data formats, or add intelligence...).
    Rob

  • Extracting video metadata from .mov files using QuickTime SDK for Windows

    I'm trying to create a service which will process .mov files and extract some statistical information from it, such as length, bitrate, video height / width , and if it's possible info about audio, such as audio levels number of channels etc.
    I've downloaded a sample application which came with SDK and it uses a visual control (Asp.net) to load file url into and then extracts a Movie object which has most of the info I need.
    problem:
    I don't have ability to load a visual control as my program is a service application. Can someone tell me how it's possible to load movie object without using visual control and fetch all the metadata I need.
    Thanks
    shorkun

    QT does not export sound from muxed mpeg files: QT Mpeg Limitations. This freeware should do the trick: Mpeg StreamClip
    If the mpegs in question are mpeg-2 you will need to buy the mpeg2playbackcomponent from Apple ($20 US). Note that these programs will not work with encrypted Hollywood movies.

  • How can I extract the metadata from multiple image files into a .csv?

    Hi.
    I'm looking for what I believe is a simple task but I am not sure how to go about it. I want to get the relevant data (seen in the screen grab below) into a spread sheet. I need to get the File Name, Size, Dimensions, Resolution and Kind into the spreadsheet so I can better analyze the data for my purposes. I have tried to find EXIF and IPTC extractors but only come across products that show me the info with no way of transferring it. I figured there must be a way to do this in the Finder. Maybe it's a simple Automator task (which I am not very good at) or a Script.
    Can anyone guide me thru or suggest a tool that would work?
    I was given a suggestion in another Disscussion to use a Plug-In for iPhoto. I found an old one but it dosnt have all of the metadata I need. It's missing the File Name and Resolution as options.
    http://www.tc.umn.edu/~erick205/Projects/Metadata%20Export/
    Thanks,
    Stephen

    Nevermind, I found it.
    +Inspector > Metrics > File Info: > drag the file's icon to the desktop+
    cheers

  • Retrieving MetaData from iFS Repository

    I have loaded a recordset dat into ifs using xml.
    sample code below:
    <name>recordset1</name>
    <archiveindex>
    <archiverecord>
    <field1>A1</field1>
    <field2>zzz</field2>
    </archiverecord>
    <archiverecord>
    <field1>A2</field1>
    <field2>yyy</field2>
    </archiverecord>
    </archiveindex>
    And by looking at the table structure I can see that the data has been loaded correctly.
    But I am having trouble retrieving the recordset back, so that I can display on a jsp page?
    I have managed to retrieve the number of records in the recordset by the following code.
    Private PublicObjectInterface poAr[];
    PublicObject po = folder.findPublicObjectByPath(m_path,File.separator);
    poAr = po.getAttributeByUpperCaseName(RECORDS_ATTRIBUTE).getPublicObjectArray(ifsSession);
    m_RecordCount = poAr.length;
    But how do I now drill down to get the field information associated with this recordset.
    I have look at the PurchaseOrder Example and it does tell (or that I am not see it) how to retrieve the actual data.
    Any guidance in doing this task would be greatful.
    Andrew
    null

    Garth,
    Thanks for letting us know - we'll fix the link. In the meantime take a look at the "Warehouse Builder Design Repository Public Views" in OWB User Guide http://download-west.oracle.com/docs/html/B12146_01/d_pub.htm#sthref3736
    Nikolai Rochnik

  • How do I bulk upload documents using PowerShell and extract metadata from file name?

    I have a requirement to upload a bunch of documents into a document library. Based on the content type, the rules of updating the metadata is different...the one giving me trouble is to extract the metadata from the file name. If I have a file name like
    "part1_part2_part3.pdf" how do I extract part1, part2, part3 and tag each document being uploaded into SharePoint, using PowerShell? I have searched and have not been able to find anything to get me started.
    Has anyone done this before? Or is there a blog I can take a look at? Thanks
     

    You will have to write a PS script encompassing this logic.
    Read files from the folder using
    Get-Item cmdlet
    Determine the content type based on the path or filename.
    Split the file name to extract the tag names.
    If the metadata fields in the content type is a managed metadata field, check whether the term exists and set it.
    Updating SharePoint Managed Metadata Columns
    with PowerShell
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • Howto Extract Exif GPS Metadata from JPEG?

    Hi,
    i want to extract GPS Metadata from a JPEG.
    The JPEG is a photo taken with an HP iPAQ hw6900 PDA.
    Serveral application like exif-o-matic can extract the GPS latitude/longitude metadata.
    As described in the Oracle interMedia/Multimedia Userguide "Chapter 6 - Working with Metadata" i use a pl/sql procedure to extract these metadata.
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28415/ch_metadata.htm#CIAEFDGH
    I insert a row and extract the metadata but in the exif xml column there are no gps metadata only width/height and so on.
    How do i extract these informations?

    I got an XML document with no GPS metadata.
    With "select p.image.getMetadata('exif') from photos p where id = xx;" i got sys.xmltype(sys.xmltype)
    and with "select p.metaexif.extract('/').getStringVal() from photos p where id = xx;" I got an xml string like these
    <exifMetadata xmlns="http://xmlns.oracle.com/ord/meta/exif" xsi:schemaLocation="http://xmlns.oracle.com/ord/meta/exif http://xmlns.oracle.com/ord/meta/exif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <TiffIfd>
    <Model tag="272">hp iPAQ hw6900</Model>
    </TiffIfd>
    <ExifIfd tag="34665">
    <ExifVersion tag="36864">0220</ExifVersion>
    <LightSource tag="37384">unknown</LightSource>
    <Flash tag="37385">
    <Fired>No</Fired>
    <Return>No strobe return function</Return>
    <Mode>unknown</Mode>
    <Function>Yes</Function>
    <RedEyeReduction>No</RedEyeReduction>
    </Flash>
    <PixelXDimension tag="40962">1280</PixelXDimension>
    <PixelYDimension tag="40963">1024</PixelYDimension>
    <DateTimeOriginal tag="36867">2008-05-28T15:02:36.000000</DateTimeOriginal>
    </ExifIfd>
    </exifMetadata>
    In the oracle xml shemata specification exists a gps section but in my example there is no gps metadata
    You can find the jpg at http://public.tfh-berlin.de/~s21656/HPIM0014.jpg
    thanks in advance
    Message was edited by:
    Steffen

  • Extract Created-Property from Office Documents

    Hello,
    i want to show the created-property of Office Documents in the search result list.
    KM only extracts Title, modified, modifiedby.
    So i followed the document "How to extract DC metadata from office documents for indexing and searching.pdf". But here only the following metadata are extracted:
    title, personalname, description, subject, keyword.
    How can i extract "created"?
    thanks in advance!
    Kind regards
    Sven

    Hi Sven,
    I'm confused. The Properties "title","modified" and "modified" by you see in the KM-Explorer are normally the KM-properties (who uploaded the file and when), not internal MSOffice information.
    To extend the list of properties displayed,
    go to SyAdm->SysConf->KM->CM->UI->Settings->LayoutSet look for your LayoutSet (probably its AdminExplorer). Select the CollectionListRenderer and edit the String in "Displayed Properties:". Add ",created" at the end for example.
    Is this what you need?
    When it comes to read MSOffice metadata from the binary, I have no idea, sorry.
    Jan

  • Extract metadata from PDF

    Hi all
    Maybe the wrong category to post this question but I am wondering if it is possible to extract the metadata from PDF document as well as we do from images?
    Since both metadata are based on XMP from Adobe it should theoretically be possible. Anybody knows how?
    Thank you.
    Nitai

    XMP extraction from PDF format files is not implemented by interMedia.
    You can learn more about XMP at the Adobe web site. It is possible to create a simple XMP extractor by implementing a byte scanner that looks for the XMP indicator string. However, I believe that the PDF format allows for some object blocks to be marked old or superseded by newer blocks. Thus it may be possible to have more than one XMP block in a PDF file. You would need to know more about PDF format to determine which is the current block.

  • Problems with extract metadata from Essbase with ODI 10.1.3.5.

    Hello there, I have a really annoying problem. I have 2 dimensions in essbase v11 with a space on it, (Itens Financeiros and Centros Financeiros), and this is causing a problem when I try to extract the metadata from essbace to a table. the problem occurs some times in 3 - loading - ss_0 - begin essbase metadata extract and some times in 4 - loading ss_0 - extract metadata, but in this 2 steps the error is the same:
    unknown member name [itens] in function [@idescendants]. I see in Johns blog someone sayng to add a '/"' in the front and at the end of the member filter criteria to allow ODI to parse the space as part of the member name. but I really don't understand this. Someone can helpme with this? Thanck you.

    It doesn't matter, I am able to replicate with an older version of the essbase adaptor...
    I take it this is the type of error you are receiving "com.hyperion.odi.essbase.ODIEssbaseException: Extract operation failed : Cannot query members by specs. Analytic Server Error(1200497): Error parsing formula for [REGION DEFINITION"
    If you download patch - Patch 8785893: ORACLE DATA INTEGRATOR 10.1.3.5.2_02 ONE-OFF PATCH
    It is easy to install just a matter of copying a jar file over an existing one in the \oracledi\drivers directory.
    It should resolve the issue.
    Ok?
    Cheers
    John
    http://john-goodwin.blogspot.com/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Extracting meta data from a email msg file.

    Hello,
    I am looking for a powershell solution. I have a business need to save outlook emails (.msg files) to a document library and somehow extract the metadata from it. Metadata includes display name of the user who sent the email, email address, subject, attachment
    and body. Have you worked on anything like this before? Perhaps some other form of document? 
    I haven't built anything like this before so as I googled (and binged) and came across the below link. After you cutomize the file location, the script does run but doesn't give any results. If and when this script will work, I need to figure out a way to export
    it as a txt or csv file. Has any built such a script? If not then can you take a look at this powershell script and make any suggestions? 
    https://jls3tech.wordpress.com/2013/09/21/msgextract-ps1-parses-metadata-of-msg-files/ 
    Thanks in advance. 

    You are best to get the "metadata" from the message before exporting it.
    You will not find any scripts to do this as it is very much a custom request.
    What kind of document library are you referring to.  If you mean SharePoint then there are many SharePoint add-ins that can display emails and their associated data.
    ¯\_(ツ)_/¯

  • Workflow to extract artist metadata within an mp4 movie

    When I add an mp4 file to a document library, I would like to be able to run a workflow to get the artist name out of the file and I'll set a column with that.
    I may want to get other fields at a later point, but I need to know how to start this process 

    Hi Carphuntin_god,
    According to your description, my understanding is that you want to use workflow to extract embedded metadata from a video file to SharePoint 2010.
    Per my knowledge, there is not an OOB way to achieve it. You can get the embedded metadata using programming.
    Here are some similar posts for you to take a look at:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/67c007fd-d59c-4881-bbd4-95fbc54ac0b3/pdf-file-metadata-into-sharepoint-list-while-uploading?forum=sharepointdevelopmentlegacy
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f685caf9-8c0d-401e-b0e2-646c2c779cb2/pdf-metadata-into-a-sharepoint-column?forum=sharepointadminprevious
    Or, you can use a third party solution called Video Library to get the embedded metadata from video files.
    https://store.bamboosolutions.com/sharepoint-video-library.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • Dual boot (Windows Vista + Archlinux)

    First hello people, this is my first post.I need some guidance here. I installed Archlinux in my laptop ( DELL XPS M1330) from a USB stick memory everything went smooth until i got to the grub part. I did it as the wiki mention I installed the grub a

  • Got error while installing adobe creative suite 4, web premium

    Installation is stopped while installing it halfway for HP ProBook 6460b, windows 7 enterprise 32bit. Any update/ idea.? Thanks.

  • How do I show a copyright logo on Photographs?

    I want to show a copyright logo and company details on my photos. Can't find how to do it. As I understand it Metadata only embeds the information in the file and not on the photo. Any Ideas?

  • Boot in 32 bit

    I do need the Cisco VPN Client to get connected to my company. They only provide software that runs under leopard and it is not an application that runs under a 64 bit system. is ther a chance to boot lion in 32 bit mode to install the software and u

  • Can pick up, but cant hear each other

    All of a sudden, I can pick up a call and can't hear them and they cant hear me. But if I call them, the lines work fine. I don't ever plug in earphones, so anyone have any ideas what's all of a sudden happened to my iphone4?