Access to KD document properties

This should looks to be simple, but doesn't seem to be working. I am trying to build a simple portlet to show docs that are popular/accessed, or recently modified, but sort doesn't seem to work. Also, when I do get a result I can't access the properties, as I get a PropertyNotRequestedException. Even trying extended properties doesn't work. This is in ALUI 6.1, using the .Net IDK.
What am I missing and/or how do I request additional properties.
IDocumentManager docManager = remoteSession.GetDocumentManager();
IDocumentQuery documentQuery = docManager.CreateQuery(folderID);
documentQuery.SetSortProperty(DocumentProperty.Popularity);
IObjectQuery queryResults = documentQuery.Execute();
document.GetIntegerValue(DocumentProperty.AccessCount)

Unfortunately I don't think the search will work either.. I was taking a brief look at this problem and while it appears that you should be able to get the properties(since it give you the options) I don't know that you can. One reason is that when you look for both of these properties in portal you can not find them, I thought that this could be a 'full text' problem where the property is available just not seen in the portal admin screens. This does not appear to be the issue either since looking into the list of properties in the database does not contain them either(PTPROPERTIES)..You might need to open a ticket with Oracle to have them give you a sure answer..If it comes back that you can't use those properties you could query the analytics database directly for a list of the most popular documents. Although this is not pretty and might cause problems with upgrades it could be easier especially if you don't really have any document security.

Similar Messages

  • Can't seem to change the Document Properties Advanced Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    Can't seem to change the Document Properties > Advanced > Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    LiveCycle forms use a very different approach to create a PDF form than Acrobat and that approach makes many features for processing PDFs non-functional.
    You might want to ask this question in one of the LiveCycle product forums.

  • Accessing MS Office built-in Document Properties

    Can someone point me to a HOWTO, etc. that shows how to access an Office document's properties (Title, Subject, Author, etc.)? Thanks.

    hi alexander,
    to programatically get and set document meta-data like author, text, description, etc. we provide the Content Management API's which are available here:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/plsql/doc/pldoc_9026/wwsbr_api.html
    use the view WWSBR_ALL_ITEMS which is located in the portal schema to query the item attributes.
    these PL/SQL API's do exactly what you are planning to do.
    regards,
    christian

  • Accessing document properties crashes program?

    I have a re occurring crash trigger. Quite often when I do a CtrlD (to get Document Properties) it crashes the program. Is this a known glitch?
    Cheers

    Hi,
    Just wanted to let you know that our IT tried to do the 'repair Acrobat installation' as discussed. Once finished the following message appeared when trying to launch Acrobat.
    All of adobe programs (Illustrator CS2, Photoshop CS4 and Acrobat 9)  ceased to work and have to be reinstalled!
    IT are not happy!

  • Read-only Collaborator can edit Contract Document properties

    We have a master agreement with a read-only collaborator. The security profile for this collaborator role is identical to the stock "Document Reviewer" profile, i.e. only View is set.
    However this supposedly read-only collaborator is able to edit Contract Document properties. They click on the Contract Documents tab, then drill into a Contract Document, and then click on the Edit button. From there, they have the ability to change fields such as Name, Descrpition, Effective Date, etc. They cannot change or delete the actual file attachment itself.
    Is this an issue with CLM, or is there some security setting we are missing somewhere? Please tell me this is not working as designed ..
    thanks.

    Hi Terry,
    According to your description, my understanding is that you don’t want the yollow bar notification to display when you open Access documents.
    This issue seems to be about the client application. Please compare the followings with the things that you did:
     1.Open the documents
     2.Click File->Options->Trust Center->Trust Center Settings
     3.Click Protected View, unselect ‘Enable Protected View for originating from the Internet’
     4.Click Message Bar, select ‘Never show information about blocked content’
     5.Click Macro Settings, select ‘Disable all macros without notification’
    In addition, as this issue is about Office, I commend you create a new thread in Office forum, more experts will assist you with this issue.
    Office forum:
    http://social.technet.microsoft.com/Forums/en-US/home?category=officeitpro
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Acrobat X - Automate document properties and thumbnails

    I have 2400 files (180,000 pages) of declassified military records I am converting to PDF using Print To PDF. The original data is read from a proprietory browser created by the Marine Corps 15 years ago and Print to PDF is the only way to access the data.
    1. Currently, I open the new PDF created, CTRL D to Document Properties, then have to enter Navigation Tab > Pages Panel and Page and Magnifaction > Fit Height on each record set.
    2. Then i go to Description and add a Description from a database I have live on my website in Coldfusion and Access.
    3. I then save the file and close Acrobat X and then repeat the Print To PDF.
    Questions to start.
    A. Are there settings or Plugins that would allow each of the PDF's created using Print To PDF to automatically have the Navigation and Magnification settings already set?
    B. Is there any way to inject the Description into the new PDF or must this always be added manually?
    C. Is there any way to automate the Fast Web View function as part of the above process?

    You didn't mention which version of Acrobat you're using, which is critical to the answers to these questions.
    If you have Acrobat Pro, then you can do A and C in a batch process (aka Action).
    B can be achieved using a custom-made script. If you have version 9 or earlier a directly link to the DB can be created and the data copied from it to the script's metadata. If you have Acrobat X this can also be done, but would require export the information from the DB to a file, reading that file with a script in Acrobat and then using it to populate the metadate fields. Again, if you have Acrobat Pro this could be done in a batch process. Otherwise, you'll have to do each file at a time.

  • Access and change documents property with KM API

    Hi,
    I am trying to access KM with the KM API to change some document properties.
    I tried following cod, but I get errors for the IUser:
    IService service = PortalRuntime.getRuntimeResources().getService(IUserManagementService.KEY);
    com.sapportals.portal.security.usermanagement.IUser user =  WPUMFactory.getUserFactory().getEP5User((IUser)request.getUser().getUser());
    IResourceContext context = new ResourceContext(user);
    RID path = RID.getRID("/documents/Access/mydoc.doc");
    IResource res;
    res = ResourceFactory.getInstance().getResource(path, context);
    response.write("ResourceDisplay Name"+res.getDisplayName());
    IPropertyName propName;
    propName = new PropertyName("http://sapportals.com/xmlns/cm/rendering","displayname");
    IMutablePropertyMap map = new MutablePropertyMap();
    IProperty property;
    response.write(map.get(propName).toString());
    property = new Property(propName, "Asia");
    map.put(property);
    res.setProperty(property);
    Does anybody have an example code? Or can anybody help me?
    Thank you
    Regards
    Ismail

    Hi,
    This should work:
    com.sapportals.portal.security.usermanagement.IUser user = WPUMFactory.getUserFactory().getEP5User(request.getUser());
    Make sure you added a sharing reference for "com.sap.km.application" in your portalapp.xml.
    Best regards,
    Avishai Zamir

  • Document Properties versus Form Properties

    Hello,
    I was searching this forum and the knowledgebase to find an answer on how to populate the Document Properties visible in Acrobat/Reader 7 with the values from the Form Properties of a XFA form created with Designer 7.1. Unfortunately I was not able to find a sufficient answer. Is it possible to fill the Document Properties from within a XFA form? Can anyone point me in the right direction?
    Any help is really appreciated. Thanks!
    Kind regards, Karin

    Hi,
    As I discussed with my colleague on Office application, the Document property we can access from File tab is different from the DOCPROPERTY we can locate in Fields.
    If you would like to add the "aaa" to document, we could add it manually.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Document Properties on Form

    I've created a form in Adobe LiveCycle Designer 8 and can enter Form Properties from there but I need to be able to add Document Properties to post it on our website for accessibility. If I open it in Adobe Professional 8 where I add the properties to other pdf's, I am unable to edit the Document properties, they're all greyed out. Even the information I added in Form properties in Designer does not appear.
    Any suggestions? or am I looking in the wrong place or missing a setting?
    Thanks for any help!
    Sue

    A file prepared in Designer cannot be further edited in Acrobat.
    Aandi Inston

  • Custom document properties accessible via Javascript?

    I don't see any method in the Document Javascript object model to read custom properties that have been added to a document.
    Is this not accessible to Javascript? I will resort to using a field in the document to store information about the file that I'd like to access if not, but I would prefer to put this info (which will not change, btw) into the custom properties if possible.

    Under 'Document Properties' (where you can enter an Author, Subject, Keywords, etc.) there is an additional tab which allows you to define custom properties. What I want to do is store info (stuff like version, a document ID#, etc) in a common place that can be accessed by my script.
    Edit - in Acrobat 7 the menu is 'Document Properties', in Acrobat 8, the menu is 'Properties'.

  • Disabling Secondary Popup When Accessing Office 2003 Documents Through KM

    Hi,
    we have the old problem with "Disabling Secondary Popup When Accessing Office 2003 Documents Through KM" which was topic of a weblog by John Mittendof already.
    For us it was solved when using Windows-integrated authentication without changing the registry as described.
    This works with Office2003 SP1. With SP2 the popup appears again.
    Does anyone have the same problem???
    The disadvantage with the registry solution is, that the files will be stored in the temporary internetfiles which leads to a message when opening a second time (in the sense of: document already open by "myself" - open writeprotected?).
    Best Regards
    Helge Stührmann

    Please Try this: (You should change all these settings or you'll get other errors)
    Go to Content Management ® Global Services ® URL Generator Service.
    Make the following changes:
    ●      a) Replace the prefix
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs in the parameters Image Path, Viewer, XML Forms CSS URL, and Content Access Path with /irj/go/km/docs
    The entry in the Image Path parameter must look as follows: /irj/go/km/docs/etc/public/mimes/images
    ●      b) Replace the prefix
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.uidetails in the parameters Resource Properties Page and New Resource Properties Page with /irj/go/km/details
    ●      c) Replace the prefix
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.navigation in the parameters Explorer Servlet and Navigation Servlet with /irj/go/km/navigation
    ●      d) Replace
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent in the parameters Highlighted Content with /irj/go/km/highlightedcontent
    ●      e) Replace
    /irj/servlet/prt/portal/prtroot/com.sap.km.cm.basicsearch in the parameter Basic Search Servlet with /irj/go/km/basicsearch
    Regards, Fede

  • What happened to the Initial View options under Document Properties??

    What happened to the Initial View options under Document Properties? I just updated my Reader and it's no longer accessible! SOS.

    Hi kga406,
    Please tell me if you are able to access 'initial view' tab in document properties using Acrobat.
    You can change initial view settings only in Acrobat and can view PDFs in Reader with the same initial view as set.
    Regards,
    Anubha

  • Problem Printing document properties from Word to PDF

    Hello all,
    This is wierd, I need to print from MS Word doc 2002 SP2 to PDF version 9.3.4.  When I do so, I need to pass the document properties from the word file to the PDF such as author, subject, title, etc.  What is strainge is when i click the pdf button in word they do pass over but when I go to >>File>>print and select PDF they do not, and yes I did select the "Add document information" check box in the Adobe PDF settings dialog.  I need to print this because I am doing a batch print process that requires it to be printed.
    HELP.

    Hello all,
    This is wierd, I need to print from MS Word doc 2002 SP2 to PDF version 9.3.4.  When I do so, I need to pass the document properties from the word file to the PDF such as author, subject, title, etc.  What is strainge is when i click the pdf button in word they do pass over but when I go to >>File>>print and select PDF they do not, and yes I did select the "Add document information" check box in the Adobe PDF settings dialog.  I need to print this because I am doing a batch print process that requires it to be printed.
    HELP.

  • I saved a spreadsheet to iCloud now I can not access it.  The message I get say I need a newer version of Numbers but I already have it.  How do I get access to my document on iCloud?

    I saved a spreadsheet to iCloud now I can not access it.  The message I get says I need a newer version of Numbers but I already have it.  How do I get access to my document on iCloud?

    Please see this user tip:
    Need newer version of Numbers to open file

  • How do I get access to Mobile documents admin console login with SAP HANA Cloud cockpit?

    Hi All,
    I am trying to launch SAP Mobile Documents from my trail version of SAP HANA Cloud.
    The Help link which I had followed  via link:
    https://help.hana.ondemand.com/help/frameset.htm?dc618538d97610148155d97dcd123c24.html#concept_0B49F10346C94249845EC16364FFF66D_76
    In SAP Cloud HANA Cockpit Using the link available in Authorization>Authorization Management
    I had created an user assigned to a Group, and Group has been assigned to a  Role ODP-OPERATOR,
    Next step, when I am trying to assign a token, I could not able find a token. How to get a token from here?
    My intention of creating user, group, role and token is for getting access to Mobile documents admin console.
    However I have also tried to access the mobile documents admin console via link
    https://smd-p1886950994trial.hana.ondemand.com/mcm/admin
    When I browse the above link, It shows HTTP 503 the requested service is not currently available.
    I am not sure, How to get access Mobile documents Admin page from here
    Could someone clarify on this please?
    Regards,
    Saravanan.R

    Hi,
    I have managed find an answer from this link SAP Mobile Documents on SAP HANA Cloud saying, SAP Mobile documents trial is not available in SAP HANA Cloud cockpit.
    Regards,
    Saravanan.R

Maybe you are looking for

  • IPod error message

    When I light up my nano iPod screen an exclamation mark inside of a triangle appears along with this web page address: www.apple.com/support/ipod The iPod is fully charged and has been restored as well as updated with this file: iPodUpdater2006-03-23

  • Records are not deleting in SAP CCM (CCM2.0), eventhough Action code 03 is

    Hi all, We are facing a problem in SAP CCM 2.0, products are not deleting from Catalogs ( Internal Catalogs)  eventhough action code '03' ( Deletion) is passing to Catalogs. In case of updating and new records creation is working fine , changes are u

  • Dual Booting with mSATA causing file corruption

    Have a T520 with an Intel SSD. Last week I added a Kingston mSATA to install Windows 8 Consumer Preview. Pulled the SSD before installing Windows 8. Then put it back in. Since doing the install have had lots of issues with both drives, although most

  • Dynamic title bar

    Hi experts , can any body tell me how to create dynamic title bar in interactive report ,i.e, suppose we have 17 pages,every page should contain the same heading, and i have one more question what are the mandatory things required in data Dictionary

  • Unable to open Presentation services with IIS 6.0

    Hi, I have installed OBIEE on a Windows 2003 server with IIS 6.0. When I try to open SAW.DLL with the following command: http://servername/analytics, I get this error Unable to contact server. Failed to find config file c:\OracleBIData\web\config\isa